Include Blizzard_APIDocumentation and Search API Button to Code Editor with Wrath Classic Data (#57)
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
local UITimer =
|
||||
{
|
||||
Name = "UITimer",
|
||||
Type = "System",
|
||||
Namespace = "C_Timer",
|
||||
|
||||
Functions =
|
||||
{
|
||||
{
|
||||
Name = "After",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "seconds", Type = "number", Nilable = false },
|
||||
{ Name = "callback", Type = "TimerCallback", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "NewTicker",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "seconds", Type = "number", Nilable = false },
|
||||
{ Name = "callback", Type = "TickerCallback", Nilable = false },
|
||||
{ Name = "iterations", Type = "number", Nilable = true },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "cbObject", Type = "TickerCallback", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "NewTimer",
|
||||
Type = "Function",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "seconds", Type = "number", Nilable = false },
|
||||
{ Name = "callback", Type = "TickerCallback", Nilable = false },
|
||||
},
|
||||
|
||||
Returns =
|
||||
{
|
||||
{ Name = "cbObject", Type = "TickerCallback", Nilable = false },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Events =
|
||||
{
|
||||
},
|
||||
|
||||
Tables =
|
||||
{
|
||||
{
|
||||
Name = "TickerCallback",
|
||||
Type = "CallbackType",
|
||||
|
||||
Arguments =
|
||||
{
|
||||
{ Name = "cb", Type = "TimerCallback", Nilable = false },
|
||||
},
|
||||
},
|
||||
{
|
||||
Name = "TimerCallback",
|
||||
Type = "CallbackType",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
APIDocumentation:AddDocumentationTable(UITimer);
|
||||
Reference in New Issue
Block a user