( kind: Kind, name: string )
| 471 | * @since 4.0.0 |
| 472 | */ |
| 473 | export const float = <const Kind extends ParamKind>( |
| 474 | kind: Kind, |
| 475 | name: string |
| 476 | ): Param<Kind, number> => |
| 477 | makeSingle({ |
| 478 | name, |
| 479 | primitiveType: Primitive.float, |
| 480 | kind |
| 481 | }) |
| 482 | |
| 483 | /** |
| 484 | * Creates a date parameter that parses ISO date strings. |
nothing calls this directly
no test coverage detected