SpaceNinjaServer/src/types/commonTypes.ts

10 lines
125 B
TypeScript
Raw Normal View History

export interface IOid {
$id: string;
2023-06-05 04:16:49 +08:00
}
2023-09-11 13:20:07 +02:00
export interface IMongoDate {
$date: {
$numberLong: string;
};
}