DefinitelyTyped/types/node-jsfl-runner/node-jsfl-runner-tests.ts
2017-03-24 14:27:52 -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) => {
});