projects/ngx-yii2-rest/src/lib/interfaces/auth-request.interface.ts
Properties |
[x: string]:
|
| password |
password:
|
Type : string
|
| username |
username:
|
Type : string
|
export interface AuthRequestInterface {
username: string;
password: string;
[x: string]: any;
}