UNPKG

@nodescript/core

Version:

Visual programming language for Browser and Node

15 lines 492 B
import { Schema } from 'airtight'; export var RequestMethod; (function (RequestMethod) { RequestMethod["GET"] = "GET"; RequestMethod["POST"] = "POST"; RequestMethod["PUT"] = "PUT"; RequestMethod["PATCH"] = "PATCH"; RequestMethod["DELETE"] = "DELETE"; })(RequestMethod || (RequestMethod = {})); export const RequestMethodSchema = new Schema({ id: 'RequestMethod', type: 'string', enum: Object.values(RequestMethod), }); //# sourceMappingURL=RequestMethod.js.map