Given the following signature:
export interface INotificationService {
error(message: string, title?: string, autoHideAfter?: number);
}
How can I call the function error()
not specifying the title
parameter, but setting autoHideAfter
to say 1000
?