0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/test/lib/verdaccio-server.js

18 lines
425 B
JavaScript
Raw Normal View History

// @flow
import type {IVerdaccioConfig} from '../types';
export class VerdaccioConfig implements IVerdaccioConfig {
2017-12-03 16:23:06 -05:00
storagePath: string;
configPath: string;
domainPath: string;
port: number;
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
}
}