Files
smartarchive/ts/index.ts

12 lines
464 B
TypeScript
Raw Permalink Normal View History

// Re-export everything from ts_shared (browser-compatible)
export * from '../ts_shared/index.js';
// Node.js-specific: Main archive class with filesystem support
2023-11-06 18:14:21 +01:00
export * from './classes.smartarchive.js';
// Node.js-specific: Archive analysis with SmartArchive integration
export * from './classes.archiveanalyzer.js';
// Node.js-specific: Extended TarTools with filesystem support (overrides shared TarTools)
export { TarTools } from './classes.tartools.js';