Interface KeplerRedactionResult<T>Experimental

interface KeplerRedactionResult<T> {
    redacted: boolean;
    redactions: readonly KeplerRedaction[];
    state: T;
}

Type Parameters

  • T = unknown

Properties

redacted: boolean
redactions: readonly KeplerRedaction[]
state: T

Deep copy of the input with every credential removed.