/** * This file was auto-generated by Fern from our API Definition. */ /** * * `POST` - POST * * `GET` - GET * * `PATCH` - PATCH * * `PUT` - PUT * * `DELETE` - DELETE */ export type MethodEnum = "POST" | "GET" | "PATCH" | "PUT" | "DELETE"; export declare const MethodEnum: { readonly Post: "POST"; readonly Get: "GET"; readonly Patch: "PATCH"; readonly Put: "PUT"; readonly Delete: "DELETE"; };