UNPKG

@technobuddha/library

Version:
6 lines (5 loc) 197 B
export type RedactAction = 'remove' | 'keep'; export type RedactOptions = { ansiEscape?: RedactAction; }; export declare function redact(input: string, { ansiEscape }?: RedactOptions): string;