UNPKG

@kyleroberts69/core

Version:

Core library for the Chatbot project

10 lines (9 loc) 197 B
export interface ServerDatabase { name: string; connect(args?: any): Promise<void>; disconnect(): Promise<void>; paths: { endpoint: string; handler: any; }[]; }