(value: Value)
| 7193 | * @since 3.10.0 |
| 7194 | */ |
| 7195 | export const OptionFromSelf = <Value extends Schema.Any>(value: Value): OptionFromSelf<Value> => { |
| 7196 | return OptionFromSelf_(value).annotations({ description: `Option<${format(value)}>` }) |
| 7197 | } |
| 7198 | |
| 7199 | /** |
| 7200 | * @category api interface |
no test coverage detected
searching dependent graphs…