@barchart/common-js
Version:
Library of common JavaScript utilities
49 lines (48 loc) • 795 B
TypeScript
/**
* An HTTP verb.
*
* @public
* @extends {Enum}
*/
export default class VerbType extends Enum {
/**
* DELETE.
*
* @static
* @returns {VerbType}
*/
static get DELETE(): VerbType;
/**
* GET.
*
* @static
* @returns {VerbType}
*/
static get GET(): VerbType;
/**
* POST.
*
* @static
* @returns {VerbType}
*/
static get POST(): VerbType;
/**
* PUT.
*
* @static
* @returns {VerbType}
*/
static get PUT(): VerbType;
/**
* PATCH.
*
* @static
* @returns {VerbType}
*/
static get PATCH(): VerbType;
/**
* @param {string} description
*/
constructor(description: string);
}
import Enum from './../../../lang/Enum.js';