UNPKG

362 BTypeScriptView Raw
1/**
2 * Possible transformation options for the @Exclude decorator.
3 */
4export interface ExcludeOptions {
5 /**
6 * Expose this property only when transforming from plain to class instance.
7 */
8 toClassOnly?: boolean;
9 /**
10 * Expose this property only when transforming from class instance to plain object.
11 */
12 toPlainOnly?: boolean;
13}