Merge pull request #4940 from schmkr/patch-1

Added content param for IToastService.showSimple()
This commit is contained in:
Masahiro Wakame
2015-07-17 00:47:29 +09:00
+1 -1
View File
@@ -144,7 +144,7 @@ declare module angular.material {
interface IToastService {
show(optionsOrPreset: IToastOptions|IToastPreset<any>): angular.IPromise<any>;
showSimple(): angular.IPromise<any>;
showSimple(content: string): angular.IPromise<any>;
simple(): ISimpleToastPreset;
build(): IToastPreset<any>;
updateContent(): void;