mirror of
https://github.com/zen-browser/components.git
synced 2025-07-12 17:35:30 +02:00
14 lines
236 B
TypeScript
14 lines
236 B
TypeScript
|
|
type SplitType = 'horizontal' | 'vertical' | 'grid';
|
|
|
|
interface Config {
|
|
keyIndicator: string; // e.g. "split-tab='true'"
|
|
defaultSplitView: SplitType;
|
|
};
|
|
|
|
type Tab = any;
|
|
|
|
interface SplitView {
|
|
type: SplitType;
|
|
tabs: Tab[];
|
|
};
|