( kind: Kind, name: string )
| 503 | * @since 4.0.0 |
| 504 | */ |
| 505 | export const date = <const Kind extends ParamKind>( |
| 506 | kind: Kind, |
| 507 | name: string |
| 508 | ): Param<Kind, Date> => |
| 509 | makeSingle({ |
| 510 | name, |
| 511 | primitiveType: Primitive.date, |
| 512 | kind |
| 513 | }) |
| 514 | |
| 515 | /** |
| 516 | * Constructs command-line params that represent a choice between several |
nothing calls this directly
no test coverage detected