UNPKG

@a11ywatch/core

Version:
28 lines (27 loc) 652 B
declare const UserModel: { email: string; password: string; salt: string; id: number; jwt: string; role: number; alertEnabled: boolean; emailConfirmed: boolean; profileVisible: boolean; lastLoginDate: string; usageAnchorDate: number; passwordRequired: boolean; scanInfo: { lastScanDate: any; totalUptime: number; creditedUptime: number; }; websiteLimit: number; googleId: string; githubId: any; resetCode: any; pageSpeedApiKey: string; stripeID: string; }; declare const makeUser: (extra?: any) => typeof UserModel; export { UserModel, makeUser };