(fn: SchemaFn<TValue>)
| 507 | * @publicApi 22.0 |
| 508 | */ |
| 509 | export function schema<TValue>(fn: SchemaFn<TValue>): Schema<TValue> { |
| 510 | return SchemaImpl.create(fn) as unknown as Schema<TValue>; |
| 511 | } |
| 512 | |
| 513 | function shouldRunAction( |
| 514 | node: FieldNode, |