mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
15 lines
447 B
TypeScript
15 lines
447 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;
|
|
}
|
|
}
|