Files
memecoin-botV2/.pnpm-store/v10/files/49/52aab2adcb258d2d862b2166e7f35135a443bd097a67fd140de24bc0823f9022344c5c9f57ebc8526e42fe8573dcbc67409effb382edbd703c0ec6b8b14234

14 lines
368 B
Plaintext

import MagicString from 'magic-string';
interface AutomockOptions {
/**
* @default "__vitest_mocker__"
*/
globalThisAccessor?: string;
id?: string;
}
declare function automockModule(code: string, mockType: "automock" | "autospy", parse: (code: string) => any, options?: AutomockOptions): MagicString;
export { automockModule };
export type { AutomockOptions };