11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
import * as plugins from './smartnpm.plugins.js';
|
|
|
|
export class PackageDisttag {
|
|
name: string;
|
|
targetVersion: string;
|
|
|
|
constructor(nameArg: string, targetVersionArg: string) {
|
|
this.name = nameArg;
|
|
this.targetVersion = targetVersionArg;
|
|
}
|
|
} |