1export interface INotificationService {
2 error(message: string, title?: string, autoHideAfter? : number);
3}
4
5class X {
6 error(message: string, title?: string, autoHideAfter?: number) {
7 console.log(message, title, autoHideAfter);
8 }
9}
10
11new X().error("hi there", undefined, 1000);