src/app/player/player-action-handler-delegate.ts
Properties |
uid |
uid:
|
Type : string
|
export interface HierarchyInfo {
contentType: string;
identifier: string;
primaryCategory: string;
}
export interface User {
uid: string;
}
export interface PlayerActionHandlerDelegate {
onContentNotFound(identifier: string, hierarchyInfo: Array<HierarchyInfo>);
onUserSwitch(user: User);
}