interface redactOptions {
    paths: string[];
    censor?: string | ((value: any, path: string[]) => any);
    remove?: boolean;
}

Properties

Properties

paths: string[]
censor?: string | ((value: any, path: string[]) => any)
remove?: boolean