| 5 | import { IPlayer } from '../IScripter.ts'; |
| 6 | |
| 7 | export class Player implements IPlayer { |
| 8 | |
| 9 | constructor() { |
| 10 | |
| 11 | } |
| 12 | |
| 13 | public play():void { |
| 14 | |
| 15 | } |
| 16 | |
| 17 | public pause():void { |
| 18 | |
| 19 | } |
| 20 | |
| 21 | public seek(position:number):void { |
| 22 | |
| 23 | } |
| 24 | |
| 25 | public jump(item:string):void { |
| 26 | |
| 27 | } |
| 28 | |
| 29 | public addEventListener(eventName:string, listener:Function):void { |
| 30 | |
| 31 | } |
| 32 | |
| 33 | public triggerAction(actionName:string, parameters?:Object):void { |
| 34 | |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected