@apistudio/apim-cli
Version:
CLI for API Management Products
37 lines (34 loc) • 601 B
text/typescript
import { HttpMethod } from '../../../index.js';
export const httpMethodDropdownItems = [
{
text: HttpMethod.CUSTOM,
value: HttpMethod.CUSTOM,
},
{
text: HttpMethod.GET,
value: HttpMethod.GET,
},
{
text: HttpMethod.POST,
value: HttpMethod.POST,
},
{
text: HttpMethod.PUT,
value: HttpMethod.PUT,
},
{
text: HttpMethod.DELETE,
value: HttpMethod.DELETE,
},
{
text: HttpMethod.PATCH,
value: HttpMethod.PATCH,
},
{
text: HttpMethod.HEAD,
value: HttpMethod.HEAD,
},
];
export type IStatusPattern = {
pattern: string;
};