UNPKG

arcticpackage

Version:

A library for making Arctic packages in typescript.

11 lines (8 loc) 218 B
import Namespace from "./Namespace"; export default class ArcticPackage extends Namespace { readonly name: string; constructor(name: string) { super(name); this.name = name; } }