mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
13 lines
209 B
JavaScript
13 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;
|