@wscsports/blaze-rtn-sdk
Version:
WSC Sports Blaze SDK component for React Native
18 lines • 658 B
TypeScript
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