Skip to content

Commit d555140

Browse files
committed
Add missing type exports
1 parent 08cac68 commit d555140

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/helpers/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
export type { Group, GroupType } from './groups';
21
export { processAndReplaceMentionElements } from './mentions';
2+
3+
export type { Group, GroupType } from './groups';
4+
export type { Mention, MentionMode, InvalidMentionContent } from './mentions';

src/index.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,10 @@ export type {
1818
MarkdownViewProps,
1919
MentionPopoverContentProps,
2020
} from './components';
21-
export type { Group, GroupType } from './helpers';
21+
export type {
22+
Group,
23+
GroupType,
24+
Mention,
25+
MentionMode,
26+
InvalidMentionContent,
27+
} from './helpers';

0 commit comments

Comments
 (0)