( value: string, )
| 305 | * ``` |
| 306 | */ |
| 307 | export function displayString( |
| 308 | value: string, |
| 309 | ): Extract<BareItem, { type: "displaystring" }> { |
| 310 | return { type: "displaystring", value }; |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Creates an Item from a Bare Item and optional Parameters. |
no outgoing calls
no test coverage detected