(code: number, data: any = {})
| 45 | * @public |
| 46 | */ |
| 47 | export function warn(code: number, data: any = {}): void { |
| 48 | warningHandler.dispatch({ code, data }) |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Emits an error. Generally should result in an exception. |
no outgoing calls
no test coverage detected