nano-service/src/types.ts
2024-01-04 21:20:47 +01:00

6 lines
212 B
TypeScript

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