inline_snapshots.d.ts 502 B

12345678910111213
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. import { Frame } from 'jest-message-util';
  8. export declare type InlineSnapshot = {
  9. snapshot: string;
  10. frame: Frame;
  11. };
  12. export declare const saveInlineSnapshots: (snapshots: InlineSnapshot[], prettier: any, babelTraverse: Function) => void;
  13. //# sourceMappingURL=inline_snapshots.d.ts.map