UNPKG

dockview

Version:

Zero dependency layout manager supporting tabs, grids and splitviews with ReactJS support

8 lines (7 loc) 232 B
export interface Constructor<T> { new (): T; } export interface FrameworkFactory<T> { createComponent: (id: string, componentId: string, component: any) => T; } export declare type FunctionOrValue<T> = (() => T) | T;