You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
615 B
15 lines
615 B
export interface MetroInspectorProxyApp {
|
|
description: string;
|
|
devtoolsFrontendUrl: string;
|
|
faviconUrl: string;
|
|
id: string;
|
|
title: string;
|
|
type: 'node';
|
|
vm: 'Hermes' | "don't use";
|
|
webSocketDebuggerUrl: string;
|
|
}
|
|
export declare function openJsInspector(app: MetroInspectorProxyApp): void;
|
|
export declare function closeJsInspector(): void;
|
|
export declare function queryInspectorAppAsync(metroServerOrigin: string, appId: string): Promise<MetroInspectorProxyApp | null>;
|
|
export declare function queryAllInspectorAppsAsync(metroServerOrigin: string): Promise<MetroInspectorProxyApp[]>;
|