Skip to content

Commit f8ec2fb

Browse files
committed
export only the type
1 parent e799a04 commit f8ec2fb

File tree

1 file changed

+11
-13
lines changed
  • packages/@react-aria/test-utils/src

1 file changed

+11
-13
lines changed

packages/@react-aria/test-utils/src/index.ts

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,16 @@ export {triggerLongPress} from './events';
1414
export {installMouseEvent, installPointerEvent} from './testSetup';
1515
export {pointerMap} from './userEventMaps';
1616
export {User} from './user';
17-
// TODO: had to export these for the docs, but not sure why I didn't have to do
18-
// so for the v3 docs?
19-
export {CheckboxGroupTester} from './checkboxgroup';
20-
export {ComboBoxTester} from './combobox';
21-
export {DialogTester} from './dialog';
22-
export {GridListTester} from './gridlist';
23-
export {ListBoxTester} from './listbox';
24-
export {MenuTester} from './menu';
25-
export {RadioGroupTester} from './radiogroup';
26-
export {SelectTester} from './select';
27-
export {TableTester} from './table';
28-
export {TabsTester} from './tabs';
29-
export {TreeTester} from './tree';
17+
export type {CheckboxGroupTester} from './checkboxgroup';
18+
export type {ComboBoxTester} from './combobox';
19+
export type {DialogTester} from './dialog';
20+
export type {GridListTester} from './gridlist';
21+
export type {ListBoxTester} from './listbox';
22+
export type {MenuTester} from './menu';
23+
export type {RadioGroupTester} from './radiogroup';
24+
export type {SelectTester} from './select';
25+
export type {TableTester} from './table';
26+
export type {TabsTester} from './tabs';
27+
export type {TreeTester} from './tree';
3028

3129
export type {UserOpts} from './types';

0 commit comments

Comments
 (0)