DeepMergeOptions
@tsed/core
Usage
typescript
import { DeepMergeOptions } from "@tsed/core";Overview
ts
interface DeepMergeOptions {
reducers?: Record<string, DeepMergeReducerCB>;
parentKey?: string;
cleanUndefinedProps?: boolean;
alter?: (key: string, value: any) => any;
}Description
Configuration options for deep merge operations.
reducers
ts
reducers?: Record<string, DeepMergeReducerCB>;parentKey
ts
parentKey?: string;cleanUndefinedProps
ts
cleanUndefinedProps?: boolean;alter:
ts
alter?: (key: string, value: any) => any;