microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/extension/networkInspector/devices/androidClientDevice.ts
11lines · modecode
| 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 | import { ClientOS } from "../clientUtils"; |
| 5 | import { BaseClientDevice } from "./baseClientDevice"; |
| 6 | |
| 7 | export class AndroidClientDevice extends BaseClientDevice { |
| 8 | constructor(id: string, isVirtualTarget: boolean, os: ClientOS, name?: string) { |
| 9 | super(id, isVirtualTarget, os, name); |
| 10 | } |
| 11 | } |
| 12 | |