Skip to content
This repository was archived by the owner on Jul 12, 2025. It is now read-only.

Commit fcdce69

Browse files
committed
fix: user explicit type exports in index.ts
1 parent e931c5a commit fcdce69

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
export * from './server';
2-
export * from './Processor';
1+
export type {StartServerResult, ServerOptions} from './server';
2+
export {startServer} from './server';
3+
4+
export type {default as Processor} from './Processor';
5+
export {AudioFoundResult, AudioNotFoundResult, ThrottledUidResult, ValidUidResult, UnknownUidResult} from './Processor';

0 commit comments

Comments
 (0)