cnpmcore
Version:
Private NPM Registry for Enterprise
10 lines (9 loc) • 404 B
TypeScript
import type { Registry } from '../../../core/entity/Registry.ts';
import { AbstractChangeStream } from './AbstractChangesStream.ts';
export declare class CnpmcoreChangesStream extends AbstractChangeStream {
getInitialSince(registry: Registry): Promise<string>;
fetchChanges(registry: Registry, since: string): AsyncGenerator<{
fullname: any;
seq: string;
}, void, unknown>;
}