xcloudsdk
Version:
xcloud sdk
12 lines (11 loc) • 445 B
TypeScript
import { SdkResult } from "../entity";
import { DeviceType } from "../entity/FuncName";
import { IDevice } from "../interface/IDevice";
import { appSdkBase } from "./appSdkBase";
declare class Device extends appSdkBase<DeviceType> implements IDevice {
constructor();
GetPlatformName(): Promise<SdkResult<string>>;
PdaBarcodeListener(callback: (code: string) => void): void;
}
declare const _default: Device;
export default _default;