diff --git a/types/index.ts b/types/index.ts index e6c2798..54d7541 100644 --- a/types/index.ts +++ b/types/index.ts @@ -151,4 +151,16 @@ export enum DiscordImageType { GUILD = 'guild', USER = 'user', FALLBACK = 'default' -} \ No newline at end of file +} + +export interface ResponseProps { + code?: number + message?: string + version?: number + data?: T + errors?: string[] +} + +interface Data { + [key: string]: T +}