aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@jest/core/build/lib/watchPluginsHelpers.d.ts
blob: 99e8d7f7288505ce1e32248167910c88e1a165f9 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * 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 type { Config } from '@jest/types';
import type { UsageData, WatchPlugin } from 'jest-watcher';
export declare const filterInteractivePlugins: (watchPlugins: Array<WatchPlugin>, globalConfig: Config.GlobalConfig) => Array<WatchPlugin>;
export declare const getSortedUsageRows: (watchPlugins: Array<WatchPlugin>, globalConfig: Config.GlobalConfig) => Array<UsageData>;