/** * Configuration for selecting custom on-disk store locations. */ export type PackageNameDBOptions = { namesPath?: string; manifestPath?: string; }; /** * Summary returned after syncing the local dataset from the replication feed. */ export type RefreshResult = { since: number; count: number; added: number; removed: number; processedChanges: number; }; /** * Public interface for querying and refreshing the package-name dataset. */ export interface PackageNameDB extends AsyncIterable { has(name: string): Promise; toArray(): Promise; iterPrefix(prefix: string): AsyncIterable; refresh(): Promise; } //# sourceMappingURL=types.d.ts.map