mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
394 B
TypeScript
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) => {
|
|
|
|
}); |