IToastPreset: add missing toastClass() method

Add toastClass() method to IToastPreset according to the docs: https://material.angularjs.org/latest/api/service/$mdToast
This commit is contained in:
Christopher Cortes
2016-10-19 10:55:23 +02:00
committed by GitHub
parent fe91970415
commit b863d18402

View File

@@ -160,6 +160,7 @@ declare namespace angular.material {
hideDelay(delay: number): T;
position(position: string): T;
parent(parent?: string|Element|JQuery): T; // default: root node
toastClass(toastClass: string): T;
}
interface ISimpleToastPreset extends IToastPreset<ISimpleToastPreset> {