graphdb-workbench
Version:
The web application for GraphDB APIs
16 lines (15 loc) • 402 B
TypeScript
import { LoggerConfig } from '../logging/logger-config';
/**
* Configurable constants.
* This is a flat configuration, so downloaded partial configurations could be applied easily.
*/
export interface Configuration {
/**
* The path where the plugins manifest is stored.
*/
pluginsManifestPath: string;
/**
* Logging configuration
*/
loggerConfig: LoggerConfig;
}