smartnpm/ts/smartnpm.classes.packagedisttag.ts

11 lines
255 B
TypeScript
Raw Normal View History

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