(...keys: Keys)
| 2927 | annotations(annotations: Annotations.Schema<Simplify<Struct.Type<Fields>>>): Struct<Fields> |
| 2928 | pick<Keys extends ReadonlyArray<keyof Fields>>(...keys: Keys): Struct<Simplify<Pick<Fields, Keys[number]>>> |
| 2929 | omit<Keys extends ReadonlyArray<keyof Fields>>(...keys: Keys): Struct<Simplify<Omit<Fields, Keys[number]>>> |
| 2930 | } |
| 2931 | |
| 2932 | /** |
no outgoing calls
no test coverage detected