( kind: Kind, name: string )
| 723 | * @since 4.0.0 |
| 724 | */ |
| 725 | export const redacted = <Kind extends ParamKind>( |
| 726 | kind: Kind, |
| 727 | name: string |
| 728 | ): Param<Kind, Redacted.Redacted<string>> => |
| 729 | makeSingle({ |
| 730 | name, |
| 731 | primitiveType: Primitive.redacted, |
| 732 | kind |
| 733 | }) |
| 734 | |
| 735 | /** |
| 736 | * Creates a parameter that reads and returns file content as a string. |
nothing calls this directly
no test coverage detected