headless
Summary: _typescript_ Reviewed By: passy Differential Revision: D17284499 fbshipit-source-id: 7306e36772911044a1d8b36c4a38f79b861eb2e6
This commit is contained in:
committed by
Facebook Github Bot
parent
fbe8e92991
commit
bb70b53c7c
22
static/setup.d.ts
vendored
Normal file
22
static/setup.d.ts
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
|
||||
type Config = {
|
||||
pluginPaths?: string[],
|
||||
disabledPlugins?: string[],
|
||||
lastWindowPosition?: {
|
||||
width: number,
|
||||
height: number
|
||||
},
|
||||
updater?: boolean | undefined,
|
||||
launcherMsg?: string | undefined,
|
||||
};
|
||||
|
||||
export default function(argv: {
|
||||
updater?: boolean,
|
||||
launcherMsg?: string
|
||||
}): {config: Config, configPath: string, flipperDir: string};
|
||||
Reference in New Issue
Block a user