mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
49c6191bb5
no logic change, just path updates
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
// @flow
|
|
import type {IVerdaccioConfig} from '../types';
|
|
|
|
export class VerdaccioConfig implements IVerdaccioConfig {
|
|
|
|
storagePath: string;
|
|
configPath: string;
|
|
domainPath: string;
|
|
port: number;
|
|
|
|
constructor(storagePath: string, configPath: string, domainPath: string, port: number) {
|
|
this.storagePath = storagePath;
|
|
this.configPath = configPath;
|
|
this.domainPath = domainPath;
|
|
this.port = port;
|
|
}
|
|
}
|