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