Files
story-studio/remotion/node_modules/@remotion/renderer/dist/browser/should-log-message.d.ts
2026-02-21 10:33:18 +01:00

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 {};