microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/debugger/ios/deviceRunner.ts
16lines · modeblame
488f1908Jimmy Thomson10 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
| 4 | | |
| 5 | | |
| 6 | export class DeviceRunner { | |
| 7 | private projectRoot: string; | |
| 8 | | |
| 9 | constructor(projectRoot: string) { | |
| 10 | this.projectRoot = projectRoot; | |
| 11 | } | |
| 12 | | |
| 13 | public run(): Q.Promise<void> { | |
| 14 | throw new Error("Not Implemented"); | |
| 15 | } | |
| 16 | } |