// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
export class DeviceRunner {
private projectRoot: string;
constructor(projectRoot: string) {
this.projectRoot = projectRoot;
}
public run(): Q.Promise<void> {
throw new Error("Not Implemented");
}
}microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
src/debugger/ios/deviceRunner.ts
16lines · modepreview