@neurosity/sdk
Version:
Neurosity SDK
13 lines (12 loc) • 323 B
TypeScript
export declare type CustomToken = {
customToken: string;
};
export declare type EmailAndPassword = {
email: string;
password: string;
};
export declare type OAuthCredentials = {
idToken: string;
providerId: string;
};
export declare type Credentials = EmailAndPassword | OAuthCredentials | CustomToken;