( value: boolean, )
| 261 | * ``` |
| 262 | */ |
| 263 | export function boolean( |
| 264 | value: boolean, |
| 265 | ): Extract<BareItem, { type: "boolean" }> { |
| 266 | return { type: "boolean", value }; |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Creates a date Bare Item. |
no outgoing calls
no test coverage detected