You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
400 B

import type { TransformResult } from 'vite';
import type * as tsTypes from 'typescript';
export declare function rewriteConsoleExpr(method: string, id: string, filename: string, code: string, sourceMap?: boolean): TransformResult;
export declare function restoreConsoleExpr(code: string): string;
export declare function appendConsoleExpr(filename: string, code: string, ts: typeof tsTypes): string;