@ebonydevcopy/framework
Version:
A module-based NodeJS chatbot framework.
13 lines • 373 B
TypeScript
import { Document } from 'mongoose';
export interface IUser {
id: string;
firstName?: string;
lastName?: string;
gender?: string;
context?: any;
active?: boolean;
handovered?: boolean;
data: any;
}
export declare const UserModel: import("mongoose").Model<IUser & Document<any, any, any>, {}, {}, {}>;
//# sourceMappingURL=UserSchema.d.ts.map