import { MethodKind } from '@bufbuild/protobuf'; import { CloseSessionRequest, CloseSessionResponse, CreateSessionRequest, CreateSessionResponse, ExecuteRequest, ExecuteResponse, PrepareRequest, PrepareResponse } from './psdb_pb.js'; /** * @generated from service psdb.v1alpha1.Database */ export declare const Database: { readonly typeName: "psdb.v1alpha1.Database"; readonly methods: { /** * @generated from rpc psdb.v1alpha1.Database.CreateSession */ readonly createSession: { readonly name: "CreateSession"; readonly I: typeof CreateSessionRequest; readonly O: typeof CreateSessionResponse; readonly kind: MethodKind.Unary; }; /** * @generated from rpc psdb.v1alpha1.Database.Execute */ readonly execute: { readonly name: "Execute"; readonly I: typeof ExecuteRequest; readonly O: typeof ExecuteResponse; readonly kind: MethodKind.Unary; }; /** * @generated from rpc psdb.v1alpha1.Database.StreamExecute */ readonly streamExecute: { readonly name: "StreamExecute"; readonly I: typeof ExecuteRequest; readonly O: typeof ExecuteResponse; readonly kind: MethodKind.ServerStreaming; }; /** * @generated from rpc psdb.v1alpha1.Database.Prepare */ readonly prepare: { readonly name: "Prepare"; readonly I: typeof PrepareRequest; readonly O: typeof PrepareResponse; readonly kind: MethodKind.Unary; }; /** * @generated from rpc psdb.v1alpha1.Database.CloseSession */ readonly closeSession: { readonly name: "CloseSession"; readonly I: typeof CloseSessionRequest; readonly O: typeof CloseSessionResponse; readonly kind: MethodKind.Unary; }; }; };