mirror of
https://github.com/araxiaonline/wow-wotlk-declarations.git
synced 2026-06-13 02:42:25 -04:00
19 lines
451 B
TypeScript
19 lines
451 B
TypeScript
declare namespace C_CovenantCallings {
|
|
|
|
/**
|
|
* Needs summary.
|
|
* @returns unlocked
|
|
* @see https://wow.gamepedia.com/API_C_CovenantCallings.AreCallingsUnlocked
|
|
* @since 9.0.1 (2020-10-13)
|
|
*/
|
|
function AreCallingsUnlocked(): boolean;
|
|
|
|
/**
|
|
* Needs summary
|
|
* @see https://wow.gamepedia.com/API_C_CovenantCallings.RequestCallings
|
|
* @since 9.0.1 (2020-10-13)
|
|
*/
|
|
function RequestCallings(): void;
|
|
|
|
}
|