mirror of
https://github.com/actions/labeler
synced 2026-05-09 18:31:02 +02:00
build
This commit is contained in:
10
node_modules/jest-diff/build/index.d.ts
generated
vendored
10
node_modules/jest-diff/build/index.d.ts
generated
vendored
@@ -6,6 +6,16 @@
|
||||
*/
|
||||
import { DiffOptions as JestDiffOptions } from './types';
|
||||
declare function diff(a: any, b: any, options?: JestDiffOptions): string | null;
|
||||
declare namespace diff {
|
||||
var getStringDiff: (expected: string, received: string, options?: JestDiffOptions | undefined) => {
|
||||
isMultiline: true;
|
||||
annotatedDiff: string;
|
||||
} | {
|
||||
isMultiline: false;
|
||||
a: string;
|
||||
b: string;
|
||||
} | null;
|
||||
}
|
||||
declare namespace diff {
|
||||
type DiffOptions = JestDiffOptions;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user