@blueprintjs/datetime
Version:
Components for interacting with dates and times
9 lines (8 loc) • 407 B
TypeScript
import type { Timezone, TimezoneWithoutOffset } from "./timezoneTypes";
/**
* Augment hard-coded timezone information stored in this package with its current offset relative to UTC,
* adjusted for daylight saving using the current date.
*
* @see https://github.com/marnusw/date-fns-tz#gettimezoneoffset
*/
export declare function lookupTimezoneOffset(tz: TimezoneWithoutOffset, date?: Date): Timezone;