Files
flipper/types/download-tarball.d.tsx
Daniel Büchele f3326f8874 install/remove
Summary: Installing/removing plugins in/from `~/.flipper/thirdparty`.

Reviewed By: jknoxville

Differential Revision: D17394822

fbshipit-source-id: b62f62fa2415403e4377fba445e77534be87350d
2019-09-17 06:21:29 -07:00

15 lines
331 B
TypeScript

/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
declare module 'download-tarball' {
export default function(options: {
url: string;
dir: string;
gotOpts?: any;
}): Promise<void>;
}