smartfile/ts/index.ts

14 lines
512 B
TypeScript
Raw Normal View History

2022-06-07 13:43:28 +00:00
import * as plugins from './smartfile.plugins.js';
import * as fsMod from './smartfile.fs.js';
import * as fsStreamMod from './smartfile.fsstream.js';
import * as interpreterMod from './smartfile.interpreter.js';
import * as memoryMod from './smartfile.memory.js';
2022-06-07 13:43:28 +00:00
export * from './smartfile.classes.smartfile.js';
export * from './smartfile.classes.virtualdirectory.js';
2015-11-24 17:52:24 +00:00
2022-06-07 13:11:21 +00:00
export const fs = fsMod;
export const fsStream = fsStreamMod;
export const interpreter = interpreterMod;
export const memory = memoryMod;