[angular-material] Adds missing methods openFrom, closeTo, and multiple to the IPresetDialog interface (#18611)

* Adds `openFrom`, `closeTo`, and `multiple` to IPresetDialog interface

* Fixes tab spacing
This commit is contained in:
Philip Johnson
2017-08-03 14:37:23 -07:00
committed by Sheetal Nandi
parent 42af8aa75a
commit 7883111a5b

View File

@@ -61,6 +61,9 @@ declare module 'angular' {
controllerAs(controllerAs?: string): T;
parent(parent?: string | Element | JQuery): T; // default: root node
ariaLabel(ariaLabel: string): T;
openFrom(from: string | Element | Event | { top: number, left: number }): T;
closeTo(to: string | Element | { top: number, left: number }): T;
multiple(multiple: boolean): T;
}
// tslint:disable-next-line no-empty-interface