UNPKG

openraas

Version:

Open Robot-as-a-Service Protocol - A comprehensive TypeScript library for building and consuming RaaS applications with X402 payment support on Solana

12 lines (11 loc) 415 B
import { RegistryAdapter } from './interface'; import { Robot } from '../core/types'; export declare class SQLiteRegistry implements RegistryAdapter { private db; constructor(dbPath?: string); private init; register(robot: Robot): Promise<void>; unregister(robotId: string): Promise<void>; find(criteria: Partial<Robot>): Promise<Robot[]>; get(robotId: string): Promise<Robot | null>; }