ontimize-web-ngx
Version:
Ontimize Web framework using Angular 15
18 lines (17 loc) • 448 B
TypeScript
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;
};