11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
|
export interface IRocketChatRecord {
|
||
|
_id: string;
|
||
|
_updatedAt: Date;
|
||
|
}
|
||
|
|
||
|
export type RocketChatRecordDeleted<T> = T &
|
||
|
IRocketChatRecord & {
|
||
|
_deletedAt: Date;
|
||
|
__collection__: string;
|
||
|
};
|