@etherna/sdk-js
Version:
Etherna SDKs for operations on the network
17 lines • 779 B
TypeScript
import { BaseReader } from "../base-reader";
import type { UserPlaylists, UserPlaylistsRaw } from "../..";
import type { EthAddress } from "../../clients";
import type { ReaderDownloadOptions, ReaderOptions } from "../base-reader";
interface UserPlaylistsReaderOptions extends ReaderOptions {
}
interface UserPlaylistsDownloadOptions extends ReaderDownloadOptions {
}
export declare const USER_PLAYLISTS_TOPIC = "EthernaUserPlaylists";
export declare class UserPlaylistsReader extends BaseReader<UserPlaylists, EthAddress, UserPlaylistsRaw> {
private owner;
private beeClient;
constructor(owner: EthAddress, opts: UserPlaylistsReaderOptions);
download(opts?: UserPlaylistsDownloadOptions): Promise<UserPlaylists>;
}
export {};
//# sourceMappingURL=reader.d.ts.map