DefinitelyTyped/node-jsfl-runner/node-jsfl-runner-tests.ts
2015-09-09 15:56:00 -04:00

23 lines
442 B
TypeScript

/// <reference path="node-jsfl-runner.d.ts" />
import * as jsfl from 'node-jsfl-runner';
let myJSFL: jsfl.JSFL = {
init: (param: string): void => {
}
}
let flashLocation: string = '';
jsfl.createJSFL(myJSFL, 'fileName.jsfl', ['Hello!'], (err: NodeJS.ErrnoException) => {
});
jsfl.runJSFL(flashLocation, 'fileName.jsfl', (err: NodeJS.ErrnoException) => {
});
jsfl.deleteJSFL('fileName.jsfl', (err: NodeJS.ErrnoException) => {
});