/** * wcli headless core — the Vue-free VFS + sandboxed command interpreter. * * Import surface for embedders (e.g. agent.libx.js): zero Vue / DOM-at-import. * The Vue terminal app composes this with `view`/ComponentLoader on top. */ export type { IFilesystem, FileSystemNode, FileMetadata, Command, CommandOptions, CommandResult, InputStream, OutputStream, ParsedCommand, CommandPipeline, PipelineOperator, Redirect, } from '../types'; export { MemFilesystem, IndexedDbFilesystem, VirtualFilesystem } from './Filesystem'; export { CommandExecutor } from './CommandExecutor'; export { CommandParser } from './CommandParser'; export { AliasManager } from './AliasManager'; export { PluginLoader } from './PluginLoader'; export { PathResolver } from '../utils/PathResolver'; export { StringInputStream, StringOutputStream, PipeStream, EmptyInputStream, } from '../utils/Stream'; export { headlessCommands, registerHeadlessCommands } from '../commands/headless'; //# sourceMappingURL=index.d.ts.map