UNPKG

@wscsports/blaze-rtn-sdk

Version:
18 lines 658 B
import { BlazePlayerType } from '../interfaces'; export interface BlazeFollowEntity { id: string; } export interface BlazeFollowEntityClickedParams { sourceId: string; playerType: BlazePlayerType; newFollowingState: boolean; followEntity: BlazeFollowEntity; } export interface BlazeFollowEntitiesDelegate { onFollowEntityClicked?: (params: BlazeFollowEntityClickedParams) => void; } export declare class BlazeFollowEntitiesDelegateHelper { static registerFollowEntitiesDelegate(delegate?: BlazeFollowEntitiesDelegate | null): void; private static onFollowEntityClicked; } //# sourceMappingURL=follow-entities-delegate.d.ts.map