update imports and create ApiBasedRepository.ts stub

This commit is contained in:
2025-01-06 21:01:22 -08:00
parent 359f8fe192
commit d10ad92907
6 changed files with 85 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
export interface IEntityWithIdAndOptionalTimestamp {
id: string;
millisecondsSinceEpoch: number;
millisecondsSinceEpoch?: number;
}
export interface ISystem extends IEntityWithIdAndOptionalTimestamp {