import PathInterface from "./path/path"; import MethodInterface from "./method/method"; import HeaderInterface from "../headers/headers"; import BodyInterface from "../body/body"; import StrictMethod from "./method/string/strict"; export default interface Strict = Record, Body = unknown> extends PathInterface, MethodInterface, HeaderInterface, BodyInterface { }