| 8 | |
| 9 | |
| 10 | interface ExtendedConsole extends Console { |
| 11 | warn: { |
| 12 | (message?: any, ...optionalParams: any[]): void; |
| 13 | callCount: number; |
| 14 | getCall: (i: number) => {args: any[]}; |
| 15 | }; |
| 16 | error: { |
| 17 | (message?: any, ...optionalParams: any[]): void; |
| 18 | callCount: number; |
| 19 | getCall: (i: number) => {args: any[]}; |
| 20 | callsFake: (fn: Function) => void; |
| 21 | getCalls: () => {args: any[]}[]; |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | declare var console: ExtendedConsole; |
| 26 |
nothing calls this directly
no outgoing calls
no test coverage detected