UNPKG

@js-joda/core

Version:

a date and time library for javascript

39 lines (33 loc) 1.05 kB
/* * @copyright (c) 2016, Philipp Thürwächter, Pattrick Hüper * @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) */ import { DateTimeException } from '../errors'; export class ZoneRulesProvider { /** * Gets the rules for the zone ID. * * This returns the latest available rules for the zone ID. * * This method relies on `@js-joda/timezone` being imported first (for * side effects). * * @param {string} zoneId * @return {ZoneRules} */ // eslint-disable-next-line no-unused-vars static getRules(_zoneId){ throw new DateTimeException('@js-joda/timezone not imported'); } /** * Gets the set of available zone IDs. * * These zone IDs are loaded and available for use by {@link ZoneId}. * * @return {string[]} a modifiable copy of the set of zone IDs, not null */ static getAvailableZoneIds(){ return []; } }