36 lines
924 B
TypeScript
36 lines
924 B
TypeScript
export type Config = ConfigRequired & ConfigOptional;
|
|
export type ConfigUser = ConfigRequired & Partial<ConfigOptional>;
|
|
export interface ConfigRequired {
|
|
}
|
|
export interface ConfigOptional {
|
|
// format
|
|
interfacePrefix: string;
|
|
indentString: string;
|
|
// name
|
|
schemasName: string;
|
|
IHandlerName: string;
|
|
ClientAPIName: string;
|
|
routerName: string;
|
|
// TS path
|
|
ServerAPITSPath: string;
|
|
utilsTSPath: string;
|
|
// other
|
|
outputDir: string;
|
|
validateStatus: (status: string) => boolean;
|
|
}
|
|
export const configDefault: ConfigOptional = {
|
|
// format
|
|
interfacePrefix: 'I',
|
|
indentString: ' ',
|
|
// name
|
|
schemasName: 'schemas',
|
|
IHandlerName: 'IHandler',
|
|
ClientAPIName: 'ClientAPI',
|
|
routerName: 'apiRouter',
|
|
// TS path
|
|
ServerAPITSPath: '#ServerAPI',
|
|
utilsTSPath: '@supmiku39/api-ts-gen/utils',
|
|
// other
|
|
outputDir: 'api/generated',
|
|
validateStatus: (status: string) => /^2..$/.test(status),
|
|
};
|