Sha256: ad530e2c156eb76e6ad42239d03bbcff7f7599dd6577219d8fd448bcfb83be9c
Contents?: true
Size: 564 Bytes
Versions: 6
Compression:
Stored size: 564 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 { BaseWatchPlugin, UsageData } from 'jest-watcher'; declare class QuitPlugin extends BaseWatchPlugin { isInternal: true; constructor(options: { stdin: NodeJS.ReadStream; stdout: NodeJS.WriteStream; }); run(): Promise<void>; getUsageInfo(): UsageData; } export default QuitPlugin;
Version data entries
6 entries across 6 versions & 1 rubygems