(name?: string)
| 463 | |
| 464 | /** @internal */ |
| 465 | export const secret = (name?: string): Config.Config<Secret.Secret> => { |
| 466 | const config = primitive( |
| 467 | "a secret property", |
| 468 | (text) => Either.right(InternalSecret.fromString(text)) |
| 469 | ) |
| 470 | return name === undefined ? config : nested(config, name) |
| 471 | } |
| 472 | |
| 473 | /** @internal */ |
| 474 | export const redacted = <A>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…