components/split-views/types.ts

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[];
};