Optimized code #133
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
export interface Data {
|
||||
createdAt: string;
|
||||
modifiedAt: string;
|
||||
createdAt?: string;
|
||||
modifiedAt?: string;
|
||||
}
|
||||
|
@@ -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 {
|
||||
|
Reference in New Issue
Block a user