- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
15 lines
511 B
TypeScript
15 lines
511 B
TypeScript
export interface PluginOptions {
|
|
dtoFileNameSuffix?: string | string[];
|
|
controllerFileNameSuffix?: string | string[];
|
|
classValidatorShim?: boolean;
|
|
classTransformerShim?: boolean | 'exclusive';
|
|
dtoKeyOfComment?: string;
|
|
controllerKeyOfComment?: string;
|
|
introspectComments?: boolean;
|
|
readonly?: boolean;
|
|
pathToSource?: string;
|
|
debug?: boolean;
|
|
parameterProperties?: boolean;
|
|
}
|
|
export declare const mergePluginOptions: (options?: Record<string, any>) => PluginOptions;
|