@nestjs/graphql
Version:
Nest - modern, fast, powerful node.js web framework (@graphql)
9 lines • 435 B
TypeScript
import { Type } from '@nestjs/common';
import { ClassDecoratorFactory } from '../interfaces/class-decorator-factory.interface';
interface PartialTypeOptions {
decorator?: ClassDecoratorFactory;
omitDefaultValues?: boolean;
}
export declare function PartialType<T>(classRef: Type<T>, optionsOrDecorator?: ClassDecoratorFactory | PartialTypeOptions): Type<Partial<T>>;
export {};
//# sourceMappingURL=partial-type.helper.d.ts.map