universal-common
Version:
Library that provides useful missing base class library functionality.
17 lines (14 loc) • 492 B
JavaScript
/**
* Represents the kind of time represented by a DateTime object.
*/
export default class DateTimeKind {
static
static
static
/** @returns {number} Time is unspecified */
static get UNSPECIFIED() { return this.
/** @returns {number} Time is UTC */
static get UTC() { return this.
/** @returns {number} Time is local */
static get LOCAL() { return this.
}