UNPKG

@k8ts/metadata

Version:

K8ts tools for working with k8ts metadata.

11 lines (9 loc) 257 B
export abstract class Metadata_Key_Base { abstract get str(): string equals(other: any): boolean { return this.constructor === other.constructor && this.toString() === other.toString() } toString() { return this.str } }