We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea52bf commit 4f32bd7Copy full SHA for 4f32bd7
src/types/Template.ts
@@ -1,3 +1,4 @@
1
+import type { Iso8601DateTime } from "./common";
2
import type { UserRef } from './User';
3
4
export interface Template {
@@ -6,6 +7,6 @@ export interface Template {
6
7
content: string;
8
creator: UserRef | null;
9
last_modifying_user: UserRef | null;
- created_at: string;
10
- modified_at: string;
+ created_at: Iso8601DateTime;
11
+ modified_at: Iso8601DateTime;
12
}
0 commit comments