UNPKG

fsf

Version:

A typesafe websocket RPC library which thins the borders between clients and servers.

11 lines (10 loc) 260 B
export type API = { hello: () => string; sum: (x: number, y: number) => number; listFiles: () => { stdout: string | Buffer; stderr: string | Buffer; }; searchMovie: (movieName: string, page?: number) => Promise<any>; errorFunction: any; };