src/app/player/player-action-handler-delegate.ts
Methods |
onContentNotFound | |||||||||
onContentNotFound(identifier: string, hierarchyInfo: Array<HierarchyInfo>)
|
|||||||||
Parameters :
Returns :
any
|
onUserSwitch | ||||||
onUserSwitch(user: User)
|
||||||
Parameters :
Returns :
any
|
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);
}