ionic-framework
Version:
The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.
16 lines (15 loc) • 438 B
TypeScript
/**
* 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.
* @private
*/
export declare class MenuType {
constructor();
setOpen(shouldOpen: any): Promise<{}>;
setProgressStart(isOpen: any): void;
setProgess(value: any): void;
setProgressEnd(shouldComplete: any): Promise<{}>;
ngOnDestroy(): void;
}