@a11ywatch/core
Version:
a11ywatch central API
28 lines (27 loc) • 652 B
TypeScript
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 };