/** * * `GET` - GET * * `OPTIONS` - OPTIONS * * `HEAD` - HEAD * * `POST` - POST * * `PUT` - PUT * * `PATCH` - PATCH * * `DELETE` - DELETE */ export declare const MethodEnum: { readonly Get: "GET"; readonly Options: "OPTIONS"; readonly Head: "HEAD"; readonly Post: "POST"; readonly Put: "PUT"; readonly Patch: "PATCH"; readonly Delete: "DELETE"; }; export type MethodEnum = (typeof MethodEnum)[keyof typeof MethodEnum];