UNPKG

@appsemble/types

Version:

TypeScript definitions reused within Appsemble internally

5 lines (4 loc) 194 B
/** * Common HTTP methods, but either all upper case or all lower case. */ export type HTTPMethods = 'DELETE' | 'delete' | 'GET' | 'get' | 'PATCH' | 'patch' | 'POST' | 'post' | 'PUT' | 'put';