ts-clean-core
Version:
19 lines (18 loc) • 356 B
TypeScript
/**
* Input data schema for the login method of the auth component.
*/
export interface UserCredentials {
/**
* Business alias
* - single word text description of the business that is set at creation.
*/
business: string;
/**
* User unique email address
*/
email: string;
/**
* Encrypted password.
*/
password: string;
}