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

9 lines (8 loc) 391 B
import { CoreAppService } from './app-service-app'; import { DmsApplicationService } from './application-context-service'; export declare class KeyValueService extends CoreAppService { constructor(dms: DmsApplicationService); getKey(key: string): Promise<string>; setKey(keys: Record<string, any>): Promise<void>; getAllKeys(prefix?: string): Promise<Record<string, any>>; }