MCPcopy
hub / github.com/ether/etherpad / ExtendedConsole

Interface ExtendedConsole

src/tests/backend/specs/hooks.ts:10–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9
10interface 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
25declare var console: ExtendedConsole;
26

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected