0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-13 22:48:31 -05:00
verdaccio/test/lib/verdaccio-server.ts

17 lines
446 B
TypeScript
Raw Normal View History

import {IVerdaccioConfig} from '../types';
export class VerdaccioConfig implements IVerdaccioConfig {
public storagePath: string;
public configPath: string;
public domainPath: string;
public port: number;
2019-09-26 11:22:14 -05:00
public constructor(storagePath: string, configPath: string, domainPath: string, port: number) {
2017-12-03 16:23:06 -05:00
this.storagePath = storagePath;
this.configPath = configPath;
this.domainPath = domainPath;
this.port = port;
2017-12-03 16:23:06 -05:00
}
}