UNPKG

cdk8s

Version:

This is the core library of Cloud Development Kit (CDK) for Kubernetes (cdk8s). cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster.

19 lines (18 loc) 469 B
export interface SanitizeOptions { /** * Do not include empty objects (no keys). * @default false */ readonly filterEmptyObjects?: boolean; /** * Do not include arrays with no items. * @default false */ readonly filterEmptyArrays?: boolean; /** * Sort dictionary keys. * @default true */ readonly sortKeys?: boolean; } export declare function sanitizeValue(obj: any, options?: SanitizeOptions): any;