Summary: Installing/removing plugins in/from `~/.flipper/thirdparty`. Reviewed By: jknoxville Differential Revision: D17394822 fbshipit-source-id: b62f62fa2415403e4377fba445e77534be87350d
15 lines
331 B
TypeScript
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>;
|
|
}
|