UNPKG

dynamicsmobile

Version:

Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com

21 lines (20 loc) 581 B
import { DmsAPIWrapper } from './dms-api-wrapper'; export declare class WebPlatformDevice extends DmsAPIWrapper { getUserIdentity(): any; barcodeScan(): Promise<any>; takePicture(): Promise<{ url: string; }>; selectPicture(): Promise<{ url: string; }>; convertPictureToBase64(pic: { url: string; }): Promise<string>; getUsername(): Promise<string>; getApparea(): Promise<string>; getInfo(): Promise<any>; sync(): Promise<void>; hideOnScreenKeyboard(): Promise<void>; getLanguage(): Promise<string>; }