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?

12 Answers
12

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *