smartnpm/ts/smartnpm.classes.packagedisttag.ts

11 lines
252 B
TypeScript
Raw Normal View History

2021-04-26 08:30:02 +00:00
import * as plugins from './smartnpm.plugins';
export class PackageDisttag {
name: string;
targetVersion: string;
constructor(nameArg: string, targetVersionArg: string) {
this.name = nameArg;
this.targetVersion = targetVersionArg;
}
}