22 lines
458 B
TypeScript
22 lines
458 B
TypeScript
import { AppleAuthenticationFullName } from 'expo-apple-authentication';
|
|||
|
|||
export interface ICredentials {
|
|||
resume?: string;
|
|||
user?: string;
|
|||
password?: string;
|
|||
username?: string;
|
|||
ldapPass?: string;
|
|||
ldap?: boolean;
|
|||
ldapOptions?: object;
|
|||
crowdPassword?: string;
|
|||
crowd?: boolean;
|
|||
code?: string;
|
|||
totp?: {
|
|||
login: ICredentials;
|
|||
code: string;
|
|||
};
|
|||
fullName?: AppleAuthenticationFullName | null;
|
|||
email?: string | null;
|
|||
identityToken?: string | null;
|
|||
}
|