forked from OpenWF/SpaceNinjaServer
10 lines
126 B
TypeScript
10 lines
126 B
TypeScript
export interface IOid {
|
|
$oid: string;
|
|
}
|
|
|
|
export interface IMongoDate {
|
|
$date: {
|
|
$numberLong: string;
|
|
};
|
|
}
|