import { HttpMethodType } from "../../../enum"; import { IHttpSend } from "../../interface"; import { ConstructorType } from "../../type"; export default class HttpMethod implements IHttpSend { type: HttpMethodType; route: string; cost: ConstructorType; methodName: string; constructor({ route, type, cost, methodName }?: { route?: string | undefined; type?: HttpMethodType | undefined; cost?: typeof HttpMethod | undefined; methodName?: string | undefined; }); }