smartfile/ts/index.ts

15 lines
483 B
TypeScript
Raw Permalink Normal View History

2024-04-02 20:53:02 +02:00
import * as plugins from './plugins.js';
2023-11-04 20:07:43 +01: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 20:07:43 +01:00
export * from './classes.smartfile.js';
2023-11-04 20:14:20 +01:00
export * from './classes.streamfile.js';
2023-11-04 20:07:43 +01:00
export * from './classes.virtualdirectory.js';
2015-11-24 18:52:24 +01:00
2022-06-07 15:11:21 +02:00
export const fs = fsMod;
export const fsStream = fsStreamMod;
export const interpreter = interpreterMod;
export const memory = memoryMod;