-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannotations.lua
More file actions
51 lines (35 loc) · 2.78 KB
/
annotations.lua
File metadata and controls
51 lines (35 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---@meta
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L1)
--- @class UIErrorsMixin
UIErrorsMixin = {}
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L3)
function UIErrorsMixin:OnLoad() end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L13)
function UIErrorsMixin:UpdateParent() end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L21)
function UIErrorsMixin:OnEvent(event, ...) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L35)
function UIErrorsMixin:OnUpdate() end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L111)
function UIErrorsMixin:FlashFontString(fontString) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L124)
function UIErrorsMixin:TryFlashingExistingMessage(messageType, message) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L135)
function UIErrorsMixin:ShouldDisplayMessageType(messageType, message) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L148)
function UIErrorsMixin:TryDisplayMessage(messageType, message, r, g, b) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L168)
function UIErrorsMixin:AddExternalErrorMessage(message) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L172)
function UIErrorsMixin:AddExternalWarningMessage(message) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L176)
function UIErrorsMixin:SetMessagesSuppressed(messagesSuppressed) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L180)
function UIErrorsMixin:GetMessagesSuppressed() end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L184)
function UIErrorsMixin:SuppressMessagesThisFrame() end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.lua#L193)
function UIErrorsMixin:CheckAddMessage(...) end
--- [Source](https:/github.com/Gethe/wow-ui-source/blob/live/Interface/AddOns/Blizzard_FrameXML/UIErrorsFrame.xml#L5)
--- @class UIErrorsFrame : MessageFrame, UIErrorsMixin
UIErrorsFrame = {}