-
-
Notifications
You must be signed in to change notification settings - Fork 643
Expand file tree
/
Copy pathindex.ts
More file actions
31 lines (28 loc) · 727 Bytes
/
index.ts
File metadata and controls
31 lines (28 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import SplitHost from './SplitHost';
import SplitScreen from './SplitScreen';
export type {
DisplayModeWillChangeEvent, // TODO: This event should be renamed to match the convention
SplitDisplayModeButtonVisibility,
SplitBehavior,
SplitPrimaryEdge,
SplitPrimaryBackgroundStyle,
SplitDisplayMode,
SplitHostDirection,
SplitHostOrientation,
SplitColumnMetrics,
SplitNavigableColumn,
SplitHostCommands,
SplitHostProps,
} from './SplitHost.types';
export type {
SplitScreenColumnType,
SplitScreenProps,
} from './SplitScreen.types';
/**
* EXPERIMENTAL API, MIGHT CHANGE W/O ANY NOTICE
*/
export const Split = {
Host: SplitHost,
Column: SplitScreen.Column,
Inspector: SplitScreen.Inspector,
};