(schemas: A)
| 588 | } |
| 589 | |
| 590 | const Field = <const A extends Field.Config>(schemas: A): Field<A> => { |
| 591 | const self = Object.create(FieldProto) |
| 592 | self.schemas = schemas |
| 593 | return self |
| 594 | } |
| 595 | |
| 596 | const Union = < |
| 597 | Members extends ReadonlyArray<Struct<any>>, |
no outgoing calls
no test coverage detected