All files / src index.ts

100% Statements 15/15
100% Branches 0/0
11.11% Functions 1/9
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  1x     4x 1x 1x 1x     1x 1x 1x 1x 1x 1x    
// 타입 내보내기
export * from "./types/index.js";
 
// 핵심 기능 내보내기
export { WorkerPool } from "./core/worker-pool.js";
export { WorkerAdapter, type WorkerOptions } from "./core/worker-adapter.js";
export { EventStream } from "./core/event-stream.js";
export { StreamManager } from "./core/stream-manager.js";
 
// 유틸리티 내보내기
export {
  generateId,
  delay,
  deepCopy,
  now,
  errorToString,
} from "./core/utils.js";