nano-service/src/types.ts

4 lines
203 B
TypeScript
Raw Normal View History

import { Message, Response } from "./messages";
export type AdaptorSubscribeTypeFn = (msg: string) => Promise<string>;
export type RouteSubscribeTypeFn<T, U> = (msg: Message<T>) => Promise<Response<U>>;