10 lines
125 B
TypeScript
10 lines
125 B
TypeScript
export interface IOid {
|
|
$id: string;
|
|
}
|
|
|
|
export interface IMongoDate {
|
|
$date: {
|
|
$numberLong: string;
|
|
};
|
|
}
|