12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
export declare const shouldLogBrowserMessage: (message: string) => boolean;
|
|
export declare const formatChromeMessage: (input: string) => {
|
|
output: string;
|
|
tag: string;
|
|
} | null;
|
|
type ChromeLogLocation = {
|
|
location: string;
|
|
lineNumber: number;
|
|
};
|
|
export declare const parseChromeLogLocation: (message: string) => ChromeLogLocation | null;
|
|
export {};
|