Spaces:
Sleeping
Sleeping
File size: 261 Bytes
cfbbc1a | 1 2 3 4 5 6 7 8 9 | import { ClassTransformOptions } from '../interfaces/external/class-transform-options.interface';
import { Type } from '../interfaces';
/**
* @publicApi
*/
export interface ClassSerializerContextOptions extends ClassTransformOptions {
type?: Type<any>;
}
|