Sha256: 19fc69b8492143be5d354555f3168f202d161e4c8d269092f5abc32b8461600d
Contents?: true
Size: 785 Bytes
Versions: 6
Compression:
Stored size: 785 Bytes
Contents
/** * 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. */ /// <reference types="node" /> import type { Config } from '@jest/types'; import { BaseWatchPlugin, Prompt, UpdateConfigCallback, UsageData } from 'jest-watcher'; declare class TestNamePatternPlugin extends BaseWatchPlugin { _prompt: Prompt; isInternal: true; constructor(options: { stdin: NodeJS.ReadStream; stdout: NodeJS.WriteStream; }); getUsageInfo(): UsageData; onKey(key: string): void; run(globalConfig: Config.GlobalConfig, updateConfigAndRun: UpdateConfigCallback): Promise<void>; } export default TestNamePatternPlugin;
Version data entries
6 entries across 6 versions & 1 rubygems