smartfile/ts/index.ts

12 lines
456 B
TypeScript
Raw Normal View History

import * as plugins from './smartfile.plugins';
2021-12-02 23:24:10 +00:00
import * as fsMod from './smartfile.fs';
import * as interpreterMod from './smartfile.interpreter';
import * as memoryMod from './smartfile.memory';
2021-04-07 09:48:54 +00:00
export { Smartfile, ISmartfileConstructorOptions } from './smartfile.classes.smartfile';
2020-10-02 14:13:34 +00:00
export { VirtualDirectory } from './smartfile.classes.virtualdirectory';
2015-11-24 17:52:24 +00:00
2021-12-02 23:24:10 +00:00
export let fs = fsMod;
export let interpreter = interpreterMod;
export let memory = memoryMod;