mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
17 lines
446 B
TypeScript
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;
|
|
}
|
|
}
|