UNPKG

gd-sprest-js

Version:

SharePoint 2013/Online js components.

17 lines (16 loc) 279 B
import { IPanel, IPanelProps } from "./types"; /** * Panel Types */ export declare enum PanelTypes { Left = 0, Medium = 1, Large = 2, LargeFixed = 3, XLarge = 4, XXLarge = 5 } /** * Panel */ export declare const Panel: (props: IPanelProps) => IPanel;