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

17 lines (16 loc) 652 B
/// <reference types="node" /> import Framework7 from "framework7/bundle"; import * as EventEmitter from 'events'; import { DmsApplicationService } from '../lib-core/application-context-service'; /** * The class contains "globally" accessesed variables. * They are meant to be accessible across the components (views, datamodels) of the app */ export declare class MobileDmsApplicationService implements DmsApplicationService { readonly appCode: string; readonly version: string; readonly currentTask: string; app: Framework7; eventEmitter: EventEmitter; constructor(appCode: string, version: string, currentTask: string); }