Optimized code #133

This commit is contained in:
2023-02-21 22:44:42 +01:00
parent 23ee963d65
commit 9ea1b14852
15 changed files with 121 additions and 79 deletions

View File

@@ -1,4 +1,4 @@
export interface Data {
createdAt: string;
modifiedAt: string;
createdAt?: string;
modifiedAt?: string;
}

View File

@@ -2,9 +2,9 @@ export interface Guild {
id?: string;
name?: string;
channels: [Channel]
roles: [Role]
emojis: [Emoji]
channels: Channel[];
roles: Role[];
emojis: Emoji[];
}
export interface Channel {