⚠️ Internal: This API is not publically exported by the package.
interface redactOptions {
    censor?: string | ((value, path) => any);
    paths: string[];
    remove?: boolean;
}

Properties

Properties

censor?: string | ((value, path) => any)

Type declaration

    • (value, path): any
    • Parameters

      • value: any
      • path: string[]

      Returns any

paths: string[]
remove?: boolean