Files
smartnpm/ts/smartnpm.classes.packagedisttag.ts

12 lines
256 B
TypeScript
Raw Permalink Normal View History

2022-04-04 23:21:49 +02: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 18:14:51 +02:00
}