Remove module in IBAN definition.

Add definition for "Java".
This commit is contained in:
Cyril Schumacher
2015-02-09 13:32:33 +01:00
parent d728603c7c
commit 9be408dd56
4 changed files with 119 additions and 46 deletions
+22
View File
@@ -0,0 +1,22 @@
/// <reference path="java.d.ts" />
/**
* @summary Test for the applet status.
*/
function testStatus() {
var java: Java = {
status: AppletStatus.Loading
};
}
/**
* @summary Test for the handlers.
*/
function testHandlers() {
var handler: Function = () => {};
var java: Java = {
onError: handler,
onLoad: handler,
onStop: handler
};
}