2
0
Files
bot/packages/schemas/features/blocks/integrations/webhook/enums.ts

12 lines
196 B
TypeScript
Raw Normal View History

export enum HttpMethod {
POST = 'POST',
GET = 'GET',
PUT = 'PUT',
DELETE = 'DELETE',
PATCH = 'PATCH',
HEAD = 'HEAD',
CONNECT = 'CONNECT',
OPTIONS = 'OPTIONS',
TRACE = 'TRACE',
}