123456789101112131415 |
- import type { Expression } from '@babel/types';
- import type { Config } from '@jest/types';
- import type { Frame } from 'jest-message-util';
- export declare type InlineSnapshot = {
- snapshot: string;
- frame: Frame;
- node?: Expression;
- };
- export declare function saveInlineSnapshots(snapshots: Array<InlineSnapshot>, prettierPath: Config.Path): void;
|