UNPKG

ionic-framework

Version:

An advanced HTML5 mobile app framework built on Angular2

18 lines (17 loc) 582 B
import { Animation } from '../../animations/animation'; /** * @private * Menu Type * Base class which is extended by the various types. Each * type will provide their own animations for open and close * and registers itself with Menu. */ export declare class MenuType { ani: Animation; isOpening: boolean; setOpen(shouldOpen: boolean, done: Function): void; setProgressStart(isOpen: boolean): void; setProgessStep(stepValue: number): void; setProgressEnd(shouldComplete: boolean, currentStepValue: number, done: Function): void; destroy(): void; }