UNPKG

372 BTypeScriptView Raw
1export default class BotsMenuModel extends Model {
2 static schema: {
3 key: StringConstructor;
4 content: ObjectConstructor;
5 keyboard: ArrayConstructor;
6 buttonsLayout: ArrayConstructor;
7 };
8 static options: {
9 model: string;
10 collection: string;
11 timestamps: boolean;
12 };
13}
14import Model from "@lskjs/db/Model";