Merge branch 'player' into dev
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 136 KiB |
+1
-1
@@ -7,4 +7,4 @@ export function ChangeState(arg1:player.PlayerState):Promise<void>;
|
||||
|
||||
export function Init(arg1:context.Context):Promise<void>;
|
||||
|
||||
export function Play():Promise<void>;
|
||||
export function Play(arg1:string):Promise<void>;
|
||||
|
||||
@@ -10,6 +10,6 @@ export function Init(arg1) {
|
||||
return window['go']['player']['Player']['Init'](arg1);
|
||||
}
|
||||
|
||||
export function Play() {
|
||||
return window['go']['player']['Player']['Play']();
|
||||
export function Play(arg1) {
|
||||
return window['go']['player']['Player']['Play'](arg1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user