amis-rpc-design/node_modules/@react-native-community/cli-plugin-metro/build/commands/start/runServer.d.ts

28 lines
821 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { Config } from '@react-native-community/cli-types';
export type Args = {
assetPlugins?: string[];
cert?: string;
customLogReporterPath?: string;
host?: string;
https?: boolean;
maxWorkers?: number;
key?: string;
platforms?: string[];
port?: number;
resetCache?: boolean;
sourceExts?: string[];
transformer?: string;
watchFolders?: string[];
config?: string;
projectRoot?: string;
interactive: boolean;
};
declare function runServer(_argv: Array<string>, ctx: Config, args: Args): Promise<void>;
export default runServer;
//# sourceMappingURL=runServer.d.ts.map