@kurrent/kurrentdb-client
Version:
KurrentDB gRPC NodeJS Client SDK
12 lines (11 loc) • 364 B
TypeScript
import type { BaseOptions } from "../types";
export type RestartSubsystemOptions = BaseOptions;
declare module "../Client" {
interface Client {
/**
* Restarts the entire projection subsystem.
* @param options - Restart subsystem options.
*/
restartSubsystem(options?: RestartSubsystemOptions): Promise<void>;
}
}