mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
// @flow
|
|
import type {IVerdaccioConfig} from './types';
|
|
|
|
export class VerdaccioConfig implements IVerdaccioConfig {
|
|
|
|
storagePath: string;
|
|
configPath: string;
|
|
domainPath: string;
|
|
|
|
constructor(storagePath: string, configPath: string, domainPath: string) {
|
|
this.storagePath = storagePath;
|
|
this.configPath = configPath;
|
|
this.domainPath = domainPath;
|
|
}
|
|
}
|