mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +00:00
* high hopes * s * plugin calling * add * eol * more progress * fmt * step 1 * refactor out * /internal route * prg * write handler * consolidate * fix version gen * prototype * out * fix merge * bundle presence and event modules * extrapolate into plugin * pluginify and simplify * fix up typing gen for process env and watch mode * watch * add nonpromptable plugins install * fix regression and clean up publish script * ea
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;
|
|
}
|