( kind: Kind, name: string, options?: Primitive.FileParseOptions | undefined )
| 788 | * @since 4.0.0 |
| 789 | */ |
| 790 | export const fileParse = <Kind extends ParamKind>( |
| 791 | kind: Kind, |
| 792 | name: string, |
| 793 | options?: Primitive.FileParseOptions | undefined |
| 794 | ): Param<Kind, unknown> => |
| 795 | makeSingle({ |
| 796 | name, |
| 797 | primitiveType: Primitive.fileParse(options), |
| 798 | kind |
| 799 | }) |
| 800 | |
| 801 | /** |
| 802 | * Creates a parameter that reads and validates file content using a schema. |
nothing calls this directly
no test coverage detected