mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 16:00:32 +00:00
14 lines
190 B
TypeScript
14 lines
190 B
TypeScript
export interface IEntityWithTimestamp {
|
|
updatedTime: Date;
|
|
}
|
|
|
|
export interface IEntityWithId {
|
|
id: string;
|
|
}
|
|
|
|
export interface ICoordinates {
|
|
latitude: number;
|
|
longitude: number;
|
|
}
|
|
|