UNPKG

dwnpm

Version:

Decentralized Registry Package Manager (DRPM) helps developers publish, install, find and manage Decentralized Packages (DPKs) published to Decentralized Web Nodes (DWNs). DRPM does this by looking up a Decentralized Identifier (DID) to find its DID docum

11 lines (10 loc) 279 B
export class DRegistryPackageManagerError { name: string; type: string; message: string; constructor(message: string, type: string = 'DRegistryPackageManagerError') { this.name = 'DRegistryPackageManagerError'; this.type = type; this.message = message; } }