mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
export interface ServerConfig extends Config {
|
|
ssl: boolean;
|
|
host: string;
|
|
port: number;
|
|
nameSpace: string;
|
|
baseUrl: string;
|
|
}
|