mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
12 lines
209 B
JavaScript
12 lines
209 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
const MethodEnum = {
|
|
Delete: 'DELETE',
|
|
Get: 'GET',
|
|
Post: 'POST',
|
|
Put: 'PUT',
|
|
};
|
|
|
|
exports.MethodEnum = MethodEnum;
|