@nestjs/swagger
Version:
Nest - modern, fast, powerful node.js web framework (@swagger)
18 lines (17 loc) • 605 B
TypeScript
export interface PluginOptions {
dtoFileNameSuffix?: string | string[];
controllerFileNameSuffix?: string | string[];
classValidatorShim?: boolean;
classTransformerShim?: boolean | 'exclusive';
dtoKeyOfComment?: string;
controllerKeyOfComment?: string;
introspectComments?: boolean;
esmCompatible?: boolean;
readonly?: boolean;
pathToSource?: string;
debug?: boolean;
parameterProperties?: boolean;
skipAutoHttpCode?: boolean;
skipDefaultValues?: boolean;
}
export declare const mergePluginOptions: (options?: Record<string, any>) => PluginOptions;