regenerated js bindings for new player
This commit is contained in:
+13
-3
@@ -1,10 +1,20 @@
|
|||||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||||
// This file is automatically generated. DO NOT EDIT
|
// This file is automatically generated. DO NOT EDIT
|
||||||
import {player} from '../models';
|
|
||||||
import {context} from '../models';
|
import {context} from '../models';
|
||||||
|
import {player} from '../models';
|
||||||
|
|
||||||
export function ChangeState(arg1:player.PlayerState):Promise<void>;
|
export function ChangeVolume(arg1:number):Promise<void>;
|
||||||
|
|
||||||
export function Init(arg1:context.Context):Promise<void>;
|
export function Init(arg1:context.Context):Promise<void>;
|
||||||
|
|
||||||
export function Play(arg1:string):Promise<void>;
|
export function LoadFile(arg1:string):Promise<void>;
|
||||||
|
|
||||||
|
export function MuteToggle():Promise<void>;
|
||||||
|
|
||||||
|
export function Pause():Promise<void>;
|
||||||
|
|
||||||
|
export function Play():Promise<void>;
|
||||||
|
|
||||||
|
export function Resume():Promise<void>;
|
||||||
|
|
||||||
|
export function SetVolume(arg1:player.UserVolume):Promise<void>;
|
||||||
|
|||||||
@@ -2,14 +2,34 @@
|
|||||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||||
// This file is automatically generated. DO NOT EDIT
|
// This file is automatically generated. DO NOT EDIT
|
||||||
|
|
||||||
export function ChangeState(arg1) {
|
export function ChangeVolume(arg1) {
|
||||||
return window['go']['player']['Player']['ChangeState'](arg1);
|
return window['go']['player']['Player']['ChangeVolume'](arg1);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Init(arg1) {
|
export function Init(arg1) {
|
||||||
return window['go']['player']['Player']['Init'](arg1);
|
return window['go']['player']['Player']['Init'](arg1);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function Play(arg1) {
|
export function LoadFile(arg1) {
|
||||||
return window['go']['player']['Player']['Play'](arg1);
|
return window['go']['player']['Player']['LoadFile'](arg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function MuteToggle() {
|
||||||
|
return window['go']['player']['Player']['MuteToggle']();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Pause() {
|
||||||
|
return window['go']['player']['Player']['Pause']();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Play() {
|
||||||
|
return window['go']['player']['Player']['Play']();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Resume() {
|
||||||
|
return window['go']['player']['Player']['Resume']();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SetVolume(arg1) {
|
||||||
|
return window['go']['player']['Player']['SetVolume'](arg1);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user