mirror of
https://github.com/zen-browser/components.git
synced 2025-07-08 04:29:58 +02:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import { Config } from "../common/config";
|
|
|
|
export type SplitType = 'horizontal' | 'vertical' | 'grid';
|
|
|
|
export interface SplitViewConfig extends Config {
|
|
keyIndicator: string; // e.g. "split-tab='true'"
|
|
defaultSplitView: SplitType;
|
|
};
|
|
|
|
export type Tab = HTMLDivElement;
|
|
|
|
export interface SplitView {
|
|
type: SplitType;
|
|
tabs: Tab[];
|
|
};
|