UNPKG

ontimize-web-ngx

Version:
18 lines (17 loc) 448 B
import { SessionInfo } from "./session-info.type"; export type ServiceConfig = { [key: string]: { path: string; serviceType?: string; urlBase?: string; session?: SessionInfo; exportPath?: string; downloadPath?: string; }; }; export type OntimizeServiceConfig = ServiceConfig & { fileManagerPath?: string; }; export type JSONAPIServiceConfig = ServiceConfig & { delimiter?: string; };