DefinitelyTyped/node-jsfl-runner/node-jsfl-runner-tests.ts
Ryan Cavanaugh 81862d240d More fixes
2016-05-04 22:50:05 -07:00

21 lines
394 B
TypeScript

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) => {
});