16 lines
262 B
TypeScript
16 lines
262 B
TypeScript
|
export interface ICredentials {
|
||
|
user?: string;
|
||
|
password?: string;
|
||
|
username?: string;
|
||
|
ldapPass?: string;
|
||
|
ldap?: boolean;
|
||
|
ldapOptions?: object;
|
||
|
crowdPassword?: string;
|
||
|
crowd?: boolean;
|
||
|
code?: string;
|
||
|
totp?: {
|
||
|
login: ICredentials;
|
||
|
code: string;
|
||
|
};
|
||
|
}
|