Skip to content

Commit

Permalink
fix(sheets-thread-comment): comment export (#3543)
Browse files Browse the repository at this point in the history
  • Loading branch information
weird94 authored Sep 23, 2024
1 parent b0a23bd commit 33f4592
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions packages/sheets-thread-comment/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,33 +14,30 @@
* limitations under the License.
*/

export type { Dependency } from '@univerjs/core';
export { Inject, Injector } from '@univerjs/core';
export { ICommandService, Plugin, UniverInstanceType } from '@univerjs/core';
export { UniverThreadCommentUIPlugin } from '@univerjs/thread-comment-ui';
export { SheetsThreadCommentPopupService } from './services/sheets-thread-comment-popup.service';
export { ShowAddSheetCommentModalOperation } from './commands/operations/comment.operation';
export { UniverSheetsThreadCommentPlugin } from './plugin';
export { SheetsThreadCommentPopupService } from './services/sheets-thread-comment-popup.service';
export { SHEETS_THREAD_COMMENT } from './types/const';
export { IThreadCommentMentionDataService } from '@univerjs/thread-comment-ui';
export { IThreadCommentDataSourceService } from '@univerjs/thread-comment';
export { SheetsThreadCommentModel } from '@univerjs/sheets-thread-comment-base';

// #region - all commands

export { ShowAddSheetCommentModalOperation } from './commands/operations/comment.operation';
export { IThreadCommentDataSourceService } from '@univerjs/thread-comment';
export {
AddCommentCommand,
DeleteCommentCommand,
UpdateCommentCommand,
ResolveCommentCommand,
DeleteCommentTreeCommand,
ResolveCommentCommand,
UpdateCommentCommand,
} from '@univerjs/thread-comment';

// #region - all commands

export type {
IAddCommentCommandParams,
IDeleteCommentCommandParams,
IDeleteCommentTreeCommandParams,
IResolveCommentCommandParams,
IUpdateCommentCommandParams,
IDeleteCommentTreeCommandParams,
} from '@univerjs/thread-comment';
export { UniverThreadCommentUIPlugin } from '@univerjs/thread-comment-ui';
export { IThreadCommentMentionDataService } from '@univerjs/thread-comment-ui';

// #endregion

0 comments on commit 33f4592

Please sign in to comment.