UNPKG

@dataset.sh/client

Version:

TypeScript client library for dataset.sh - A powerful dataset management system supporting both local and remote storage with seamless transfer capabilities.

13 lines 448 B
import { RemoteDataset } from './RemoteDataset'; import { RemoteClient } from './RemoteClient'; export declare class RemoteNamespace { private client; private namespace; readonly endpoints: { listDatasets: (page?: number) => string; }; constructor(client: RemoteClient, namespace: string); datasets(page?: number): Promise<RemoteDataset[]>; getNamespace(): string; } //# sourceMappingURL=RemoteNamespace.d.ts.map