mirror of
https://github.com/sern-handler/cli
synced 2026-06-27 18:22:20 +00:00
17 lines
379 B
TypeScript
17 lines
379 B
TypeScript
export interface sernConfig {
|
|
language: 'typescript' | 'javascript';
|
|
paths: {
|
|
base: string;
|
|
commands: string;
|
|
};
|
|
buildPath: string;
|
|
rest?: Record<string, Record<string, unknown>>;
|
|
}
|
|
|
|
export interface TheoreticalEnv {
|
|
DISCORD_TOKEN: string;
|
|
APPLICATION_ID?: string;
|
|
MODE: 'production' | 'environment';
|
|
[name: string]: string;
|
|
}
|