UNPKG

@etherna/sdk-js

Version:

Etherna SDKs for operations on the network

14 lines 528 B
import type { BeeClient } from "."; import type { RequestOptions } from "../types"; import type { Tag } from "./types"; export declare class Tags { private instance; constructor(instance: BeeClient); downloadAll(options?: RequestOptions): Promise<{ tags: Tag[]; }>; download(uid: number, options?: RequestOptions): Promise<Tag>; create(address: string, options?: RequestOptions): Promise<Tag>; delete(uid: number, options?: RequestOptions): Promise<void>; } //# sourceMappingURL=tags.d.ts.map