import type { BaseOptions } from "../types"; export interface EnableProjectionOptions extends 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; } }