``` export class MessageBuilder { setUrl(url: string): this; setColor(color: number): this; } ``` should be ``` export class MessageBuilder { setURL(url: string): this; setColor(color: string | number): this; } ```