chore: for the statistics only

permalink: http://whatthecommit.com/f6cb5f952917639c9e28f94ae495bd59
This commit is contained in:
EvolutionX
2023-08-31 10:47:45 +05:30
parent c218065a04
commit 42bd528756
12 changed files with 212 additions and 241 deletions

14
src/types/config.d.ts vendored
View File

@@ -6,16 +6,14 @@ export interface sernConfig {
};
scripts?: {
prepublish?: string;
}
};
buildPath: string;
rest?: Record<string, Record<string,unknown>>;
rest?: Record<string, Record<string, unknown>>;
}
export interface TheoreticalEnv {
DISCORD_TOKEN: string
APPLICATION_ID: string,
MODE: 'PROD' | 'DEV'
[name: string]: string
DISCORD_TOKEN: string;
APPLICATION_ID: string;
MODE: 'PROD' | 'DEV';
[name: string]: string;
}