@impler/shared
Version:
Reusable types and classes to shared between apps and libraries
25 lines • 580 B
TypeScript
import { SCREENS } from '../../utils/defaults';
export declare enum AuthProviderEnum {
'GOOGLE' = "google",
'GITHUB' = "github"
}
export interface IJwtPayload {
_id: string;
_projectId?: string;
email?: string;
firstName?: string;
lastName?: string;
profilePicture?: string;
companySize?: string;
role?: string;
source?: string;
isEmailVerified: boolean;
}
export interface ILoginResponse {
token: string;
screen?: SCREENS;
}
export interface IScreenResponse {
screen: SCREENS;
}
//# sourceMappingURL=auth.types.d.ts.map