UNPKG

361 BTypeScriptView Raw
1/**
2 * Creates a console object that delegates calls to the specified underlying console and also sends
3 * the messages to the development environment over a remote connection.
4 */
5declare function createRemoteConsole(originalConsole: Console): Console;
6declare const _default: {
7 createRemoteConsole: typeof createRemoteConsole;
8};
9export default _default;