UNPKG

cnpmcore

Version:
7 lines (6 loc) 377 B
import { Registry } from '../../../core/entity/Registry'; import { AbstractChangeStream, ChangesStreamChange } from './AbstractChangesStream'; export declare class NpmChangesStream extends AbstractChangeStream { getInitialSince(registry: Registry): Promise<string>; fetchChanges(registry: Registry, since: string): AsyncGenerator<ChangesStreamChange, void, unknown>; }