DefinitelyTyped/node-jsfl-runner/node-jsfl-runner-tests.ts
2015-08-17 19:31:51 -04:00

21 lines
394 B
TypeScript

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