TeaWeb/tools/dtsgen/test/test_02.ts
WolverinDEV bbc929d46d
Merged translation system (#17)
* A lots of translation changes (Generate translation files)

* Removed auto generated package lock file

* Implementation of the translation system, inc generators.

* improved loader error handling

* Finalizing the translation system.
Needs some tests and a final translation generation.
As well a handy translation mapper or editor would be likely.
May source this out into another project?

* Finalizing the translation system

* Finalized translation system and added polish and turkish google translation

* Finally done :)

* Fixed defautl repositories dosnt show up

* fixed settings not initialized
2018-12-15 14:04:29 +01:00

49 lines
No EOL
1.1 KiB
TypeScript

class A {
constructor() {}
a() : void{ }
}
namespace B {
export class C {
constructor() {}
a() : void{ }
get c() { return undefined; }
set c(_) { }
}
}
declare class XXX {
private static _audioInstances;
private static _globalReplayScheduler;
private static _timeIndex;
private static _audioDestinationStream;
static initializeAudioController(): void;
speakerContext: AudioContext;
private playerState;
private audioCache;
private playingAudioCache;
private _volume;
private _codecCache;
private _timeIndex;
private _latencyBufferLength;
private _buffer_timeout;
allowBuffering: boolean;
onSpeaking: () => void;
onSilence: () => void;
constructor();
initialize(): void;
close(): void;
playBuffer(buffer: AudioBuffer): void;
private playQueue;
private removeNode;
stopAudio(now?: boolean): void;
private testBufferQueue;
private reset_buffer_timeout;
volume: number;
private applyVolume;
codecCache(codec: number): CodecClientCache;
}