This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local ADDON, Addon = ... | |
| local Mod = Addon:NewModule('QuestFrame') | |
| local Config | |
| local dataProvder | |
| local hoveredQuestID | |
| local MAPID_AZEROTH = 947 | |
| -- Legion | |
| local MAPID_BROKENISLES = 619 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Dayjs, PluginFunc, ConfigType } from 'dayjs'; | |
| declare const plugin: PluginFunc; | |
| export = plugin; | |
| declare module 'dayjs' { | |
| /** Similar to date-fns/utcToZonedTime */ | |
| function utcToZoned(config: ConfigType, timezone?: string): Dayjs; | |
| /** Similar to date-fns/zonedTimeToUtc */ |