11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
|
import * as plugins from './smartnpm.plugins';
|
||
|
|
||
|
export class PackageDisttag {
|
||
|
name: string;
|
||
|
targetVersion: string;
|
||
|
|
||
|
constructor(nameArg: string, targetVersionArg: string) {
|
||
|
this.name = nameArg;
|
||
|
this.targetVersion = targetVersionArg;
|
||
|
}
|
||
|
}
|