Redact a generic payload (network entry, log event, action, etc.).
(data: unknown, clientId?: string)
| 114 | export interface Redactor { |
| 115 | /** Redact a generic payload (network entry, log event, action, etc.). */ |
| 116 | redact(data: unknown, clientId?: string): unknown |
| 117 | /** Redact a state payload anchored at `statePath` (pass "" for full tree). */ |
| 118 | redactState(data: unknown, clientId: string | undefined, statePath: string): unknown |
| 119 | /** Redact an AsyncStorage mutation payload (storage-key heuristic + deep walk). */ |
no outgoing calls
no test coverage detected