import type { Schema } from 'yaschema'; import type { AnyBody } from './AnyBody'; import type { AnyHeaders } from './AnyHeaders'; import type { AnyParams } from './AnyParams'; import type { AnyQuery } from './AnyQuery'; /** Schemas used for requests */ export interface RequestSchemas { headers?: Schema; params?: Schema; query?: Schema; body?: Schema; }