(options?: StringifyJsonOptions)
| 1037 | }) |
| 1038 | ) |
| 1039 | } |
| 1040 | |
| 1041 | /** |
| 1042 | * Replacer function or property allowlist accepted by `JSON.stringify`. |
| 1043 | * |
| 1044 | * @category utility types |
| 1045 | * @since 4.0.0 |
| 1046 | */ |
| 1047 | export type JsonReplacer = |
| 1048 | | ((this: any, key: string, value: any) => any) |
| 1049 | | Array<string | number> |