(
p: SchemaPathTree<PModel>,
)
| 151 | // to successfully satisfy the complex, deferred conditional generic typings |
| 152 | // required by the `RootFieldContext` interface. |
| 153 | fieldTreeOf<PModel>( |
| 154 | p: SchemaPathTree<PModel>, |
| 155 | ): [PModel] extends [any] ? ReadonlyFieldTree<PModel> : never { |
| 156 | return this.resolve<PModel>(p) as any; |
| 157 | } |
| 158 | |
| 159 | stateOf<PControl extends AbstractControl>( |
| 160 | p: CompatSchemaPath<PControl>, |