UNPKG

cnpmcore

Version:

Private NPM Registry for Enterprise

14 lines (13 loc) 410 B
import { Context } from 'egg'; import { AbstractController } from './AbstractController.ts'; export declare class ChangesStreamController extends AbstractController { private changeRepository; listChanges(ctx: Context, since: string): Promise<{ results: { seq: bigint | undefined; type: string; id: string; changes: any[]; }[]; }>; }