31 lines
773 B
TypeScript
31 lines
773 B
TypeScript
|
|
/**
|
|||
|
|
* 数据模型统一导出
|
|||
|
|
* 所有模型均采用 TypeGoose + TimeStamps 模式,符合 Tailchat 插件标准
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
export {
|
|||
|
|
default as InviteModel,
|
|||
|
|
type InviteDocument,
|
|||
|
|
type InviteModel as InviteModelType,
|
|||
|
|
} from './invite';
|
|||
|
|
export {
|
|||
|
|
default as StatsModel,
|
|||
|
|
type StatsDocument,
|
|||
|
|
type StatsModel as StatsModelType,
|
|||
|
|
} from './stats';
|
|||
|
|
export {
|
|||
|
|
default as AccessLogModel,
|
|||
|
|
type AccessLogDocument,
|
|||
|
|
type AccessLogModel as AccessLogModelType,
|
|||
|
|
} from './accesslog';
|
|||
|
|
export {
|
|||
|
|
default as KickRecordModel,
|
|||
|
|
type KickRecordDocument,
|
|||
|
|
type KickRecordModel as KickRecordModelType,
|
|||
|
|
} from './kickrecord';
|
|||
|
|
export {
|
|||
|
|
default as DeletionRecordModel,
|
|||
|
|
type DeletionRecordDocument,
|
|||
|
|
type DeletionRecordModel as DeletionRecordModelType,
|
|||
|
|
} from './deletionrecord';
|