mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
16 lines
446 B
TypeScript
16 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;
|
|
}
|
|
}
|