UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

32 lines (31 loc) 630 B
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, }, ];