smartfile/ts/index.ts

15 lines
483 B
TypeScript
Raw Permalink Normal View History

2024-04-02 18:53:02 +00:00
import * as plugins from './plugins.js';
2023-11-04 19:07:43 +00:00
import * as fsMod from './fs.js';
import * as fsStreamMod from './fsstream.js';
import * as interpreterMod from './interpreter.js';
import * as memoryMod from './memory.js';
2023-11-04 19:07:43 +00:00
export * from './classes.smartfile.js';
2023-11-04 19:14:20 +00:00
export * from './classes.streamfile.js';
2023-11-04 19:07:43 +00:00
export * from './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;