mirror of
https://github.com/araxiaonline/wow-wotlk-declarations.git
synced 2026-06-13 02:42:25 -04:00
36 lines
997 B
TypeScript
36 lines
997 B
TypeScript
declare namespace WoWAPI {
|
|
|
|
interface CovenantPreviewInfo {
|
|
|
|
textureKit: string;
|
|
transmogSetID: number;
|
|
mountID: number;
|
|
covenantName: string;
|
|
covenantZone: string;
|
|
description: string;
|
|
covenantCrest: string;
|
|
covenantAbilities: CovenantAbilityInfo[];
|
|
fromPlayerChoice: boolean;
|
|
covenantSoulbinds: CovenantSoulbindInfo[];
|
|
featureInfo: CovenantFeatureInfo;
|
|
}
|
|
}
|
|
|
|
declare namespace C_CovenantPreview {
|
|
|
|
/**
|
|
* Needs summary
|
|
* @see https://wow.gamepedia.com/API_C_CovenantPreview.CloseFromUI
|
|
* @since 9.0.1 (2020-10-13)
|
|
*/
|
|
function CloseFromUI(): void;
|
|
|
|
/**
|
|
* Needs summary
|
|
* @param playerChoiceResponseID
|
|
* @see https://wow.gamepedia.com/API_C_CovenantPreview.GetCovenantInfoForPlayerChoiceResponseID
|
|
* @since 9.0.1 (2020-10-13)
|
|
*/
|
|
function GetCovenantInfoForPlayerChoiceResponseID(playerChoiceResponseID: number): WoWAPI.CovenantPreviewInfo;
|
|
}
|