UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

10 lines (9 loc) 452 B
import { IService, IServiceOptions, IServiceStatus, ServiceStatus } from './IService'; export interface IApplicationServiceOptions extends IServiceOptions { progressCallback?: (status: IApplicationServiceStatus) => void; } export interface IApplicationServiceStatus extends IServiceStatus { status: ServiceStatus; timestamp: Date; } export declare type IApplicationService = IService<IApplicationServiceOptions, IApplicationServiceStatus>;