Skip to content

Commit 4f32bd7

Browse files
committed
Use Iso8601DateTime for Template properties
1 parent 3ea52bf commit 4f32bd7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/types/Template.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Iso8601DateTime } from "./common";
12
import type { UserRef } from './User';
23

34
export interface Template {
@@ -6,6 +7,6 @@ export interface Template {
67
content: string;
78
creator: UserRef | null;
89
last_modifying_user: UserRef | null;
9-
created_at: string;
10-
modified_at: string;
10+
created_at: Iso8601DateTime;
11+
modified_at: Iso8601DateTime;
1112
}

0 commit comments

Comments
 (0)