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