mirror of
https://github.com/zen-browser/components.git
synced 2025-07-08 04:29:58 +02:00
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
|
|
declare type SplitType = 'horizontal' | 'vertical' | 'grid';
|
|
|
|
declare interface SplitViewConfig extends Config {
|
|
splitIndicator: string; // e.g. "split-tab='true'"
|
|
defaultSplitView: SplitType;
|
|
};
|
|
|
|
declare interface SplitView {
|
|
type: SplitType;
|
|
tabs: MockedExports.BrowserTab[];
|
|
id: number;
|
|
};
|