(kind: Kind, name: string)
| 754 | * @since 4.0.0 |
| 755 | */ |
| 756 | export const fileText = <Kind extends ParamKind>(kind: Kind, name: string): Param<Kind, string> => |
| 757 | makeSingle({ |
| 758 | name, |
| 759 | primitiveType: Primitive.fileText, |
| 760 | kind |
| 761 | }) |
| 762 | |
| 763 | /** |
| 764 | * Creates a param that reads and parses the content of the specified file. |
nothing calls this directly
no test coverage detected