@k8ts/instruments
Version:
A collection of utilities and core components for k8ts.
11 lines • 360 B
TypeScript
export declare class Embedder<Target extends object, Value> {
readonly name: string;
private _symbol;
constructor(name: string);
[Symbol.toStringTag](): string;
toString(): string;
set(target: Target, data: Value): this;
tryGet(target: Target): Value | undefined;
get(target: Target): Value;
}
//# sourceMappingURL=base.d.ts.map