1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/lib/verdaccio-server.ts
2019-09-26 18:22:14 +02:00

17 lines
446 B
TypeScript

import {IVerdaccioConfig} from '../types';
export class VerdaccioConfig implements IVerdaccioConfig {
public storagePath: string;
public configPath: string;
public domainPath: string;
public port: number;
public constructor(storagePath: string, configPath: string, domainPath: string, port: number) {
this.storagePath = storagePath;
this.configPath = configPath;
this.domainPath = domainPath;
this.port = port;
}
}