smartnpm/ts/smartnpm.classes.packagedisttag.ts
2021-04-26 08:30:02 +00:00

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;
}
}