materialize-angular
Version:
Material UI Angular library
26 lines (25 loc) • 654 B
TypeScript
/**
* @license
* Copyright Workylab. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE
*/
export declare class DrawerModel {
className: string;
closeOnBackdrop: boolean;
hasBackdrop: boolean;
isOpen: boolean;
position: DRAWER_POSITIONS;
transitionDuration: number;
type: DRAWER_TYPES;
}
export declare enum DRAWER_POSITIONS {
RIGHT = "right",
LEFT = "left"
}
export declare enum DRAWER_TYPES {
OVER = "over",
PUSH = "push",
STATIC = "static"
}