(value: number)
| 176 | * ``` |
| 177 | */ |
| 178 | export function decimal(value: number): Extract<BareItem, { type: "decimal" }> { |
| 179 | return { type: "decimal", value }; |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Creates a string Bare Item. |
no outgoing calls
no test coverage detected