ghaction-upx/node_modules/jest-snapshot/build/printSnapshot.d.ts
2020-01-23 08:49:02 +00:00

22 lines
1.5 KiB
TypeScript

/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import chalk = require('chalk');
import { MatchSnapshotConfig } from './types';
export declare const getSnapshotColorForChalkInstance: (chalkInstance: chalk.Chalk) => import("jest-diff/build/types").DiffOptionsColor;
export declare const getReceivedColorForChalkInstance: (chalkInstance: chalk.Chalk) => import("jest-diff/build/types").DiffOptionsColor;
export declare const aSnapshotColor: import("jest-diff/build/types").DiffOptionsColor;
export declare const bReceivedColor: import("jest-diff/build/types").DiffOptionsColor;
export declare const noColor: (string: string) => string;
export declare const HINT_ARG = "hint";
export declare const SNAPSHOT_ARG = "snapshot";
export declare const PROPERTIES_ARG = "properties";
export declare const matcherHintFromConfig: ({ context: { isNot, promise }, hint, inlineSnapshot, matcherName, properties, }: MatchSnapshotConfig, isUpdatable: boolean) => string;
export declare const printExpected: (val: unknown) => string;
export declare const printReceived: (val: unknown) => string;
export declare const printPropertiesAndReceived: (properties: object, received: object, expand: boolean) => string;
export declare const printSnapshotAndReceived: (a: string, b: string, received: unknown, expand: boolean) => string;
//# sourceMappingURL=printSnapshot.d.ts.map