(private readonly handlerOptions: RPCApiHandlerOptions<Schema>)
| 135 | private registrySchemas: Record<string, SchemaObject> = {}; |
| 136 | |
| 137 | constructor(private readonly handlerOptions: RPCApiHandlerOptions<Schema>) { |
| 138 | this.factory = createQuerySchemaFactory(handlerOptions.schema, handlerOptions.queryOptions); |
| 139 | } |
| 140 | |
| 141 | private get schema(): SchemaDef { |
| 142 | return this.handlerOptions.schema; |
nothing calls this directly
no test coverage detected