smartnpm/ts/smartnpm.classes.packagedisttag.ts

12 lines
256 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;
}
2023-07-25 16:14:51 +00:00
}