Skip to content

Instantly share code, notes, and snippets.

@DenL
DenL / QuestFrame.lua
Last active November 30, 2020 12:39
AngryWorldQuest Edit
local ADDON, Addon = ...
local Mod = Addon:NewModule('QuestFrame')
local Config
local dataProvder
local hoveredQuestID
local MAPID_AZEROTH = 947
-- Legion
local MAPID_BROKENISLES = 619
@ianldgs
ianldgs / dayjs-zoned.d.ts
Last active October 6, 2022 09:21
DayJS Zoned
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 */