UNPKG

admin-lte

Version:

Responsive open source admin dashboard and control panel.

20 lines (19 loc) 661 B
/** * ---------------------------------------------------------------------------- * @file AdminLTE layout.ts * @description Layout for AdminLTE. * @license MIT * ---------------------------------------------------------------------------- */ /** * ---------------------------------------------------------------------------- * Class Definition * ---------------------------------------------------------------------------- */ declare class Layout { _element: HTMLElement; _holdTransitionTimer: ReturnType<typeof setTimeout> | undefined; constructor(element: HTMLElement); holdTransition(time?: number): void; } export default Layout;