Summary: _typescript_ Reviewed By: passy Differential Revision: D17284499 fbshipit-source-id: 7306e36772911044a1d8b36c4a38f79b861eb2e6
23 lines
533 B
TypeScript
23 lines
533 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
|
|
*/
|
|
|
|
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};
|