12 lines
489 B
TypeScript
12 lines
489 B
TypeScript
// Re-export everything from ts_shared (browser-compatible)
|
|
export * from '../ts_shared/index.js';
|
|
|
|
// Node.js-specific: Main archive class with filesystem support
|
|
export * from './classes.smartarchive.js';
|
|
|
|
// Node.js-specific: Archive analysis with SmartArchive integration
|
|
export * from './classes.archiveanalyzer.js';
|
|
|
|
// Node.js-specific: Extended TarTools with streaming support (overrides shared TarTools)
|
|
export { TarTools, type ITarPackFileOptions } from './classes.tartools.js';
|