Issue
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?
Solution
As specified in the documentation, use undefined:
export interface INotificationService {
error(message: string, title?: string, autoHideAfter? : number);
}
class X {
error(message: string, title?: string, autoHideAfter?: number) {
console.log(message, title, autoHideAfter);
}
}
new X().error("hi there", undefined, 1000);
Answered By - Thomas
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.