UNPKG

flexlayout-react

Version:

A multi-tab docking layout manager

13 lines (12 loc) 370 B
import { Orientation } from "./Orientation"; export declare class DockLocation { static values: Map<string, DockLocation>; static TOP: DockLocation; static BOTTOM: DockLocation; static LEFT: DockLocation; static RIGHT: DockLocation; static CENTER: DockLocation; getName(): string; getOrientation(): Orientation; toString(): string; }