UNPKG

@kurrent/kurrentdb-client

Version:
13 lines (12 loc) 441 B
import type { BaseOptions } from "../types"; export type EnableProjectionOptions = BaseOptions; declare module "../Client" { interface Client { /** * Enables a projection. * @param projectionName - The name of the projection to enable. * @param options - Enable projection options. */ enableProjection(projectionName: string, options?: EnableProjectionOptions): Promise<void>; } }