import type { HttpHandler, HttpMethods } from "msw"; import type { TContentTypes } from "./contentTypes.d.mts"; export type THttpHandlerWithExtendedInfo = Omit & { info: Partial<{ header: string; path: string | RegExp | undefined; method: HttpMethods; description: string; type: TContentTypes; mock: Mock; decorator: (args: unknown) => void; tags: string[]; body: BodyInit | null; }>; };