UNPKG

354 BTypeScriptView Raw
1export interface PluginOptions {
2 dtoFileNameSuffix?: string | string[];
3 controllerFileNameSuffix?: string | string[];
4 classValidatorShim?: boolean;
5 dtoKeyOfComment?: string;
6 controllerKeyOfComment?: string;
7 introspectComments?: boolean;
8}
9export declare const mergePluginOptions: (options?: Record<string, any>) => PluginOptions;