UNPKG

lib-utils-ts

Version:

<img src="https://img.shields.io/npm/v/lib-utils-ts"/> <img src="https://img.shields.io/snyk/vulnerabilities/npm/lib-utils-ts"/> <img src="https://img.shields.io/npm/l/lib-utils-ts"/> <img src="https://img.shields.io/github/languages/top/devGnode/lib-util

14 lines 245 B
/*** */ export class Type{ /*** */ private readonly name:string; /** * @param name */ constructor(name:string) { this.name=name; } /**/ public getName(): string { return this.name; } } Object.package(this);