UNPKG

universal-common

Version:

Library that provides useful missing base class library functionality.

15 lines (14 loc) 464 B
/** * Represents the kind of time represented by a DateTime object. */ export default class DateTimeKind { static "__#1@#UNSPECIFIED": number; static "__#1@#UTC": number; static "__#1@#LOCAL": number; /** @returns {number} Time is unspecified */ static get UNSPECIFIED(): number; /** @returns {number} Time is UTC */ static get UTC(): number; /** @returns {number} Time is local */ static get LOCAL(): number; }