src/app/player/player-action-handler-delegate.ts
Properties |
contentType |
contentType:
|
Type : string
|
identifier |
identifier:
|
Type : string
|
primaryCategory |
primaryCategory:
|
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);
}