@twurple/api
Version:
Interact with Twitch's API.
22 lines • 784 B
TypeScript
import { type HelixBaseExtensionData, type HelixExtensionSlotType } from '../../../interfaces/endpoints/userExtension.external';
import { HelixBaseExtension } from './HelixBaseExtension';
/**
* A Twitch Extension that is installed in a slot of a channel.
*
* @inheritDoc
*/
export declare class HelixInstalledExtension extends HelixBaseExtension {
private readonly _slotType;
private readonly _slotId;
/** @private */
constructor(slotType: HelixExtensionSlotType, slotId: string, data: HelixBaseExtensionData);
/**
* The type of the slot the extension is in.
*/
get slotType(): HelixExtensionSlotType;
/**
* The ID of the slot the extension is in.
*/
get slotId(): string;
}
//# sourceMappingURL=HelixInstalledExtension.d.ts.map