Source: borzoo/login-input.model.js

  1. // @flow
  2. /**
  3. * Input for user login.
  4. * @type LoginInput
  5. */
  6. export type LoginInput = {
  7. /**
  8. * User ID.
  9. * @type {string}
  10. * @memberof LoginInput
  11. */
  12. username: string,
  13. /**
  14. * Passphrase in clear text.
  15. * @type {string}
  16. * @memberof LoginInput
  17. */
  18. passphrase: string,
  19. };