nano-service/src/types.ts

7 lines
212 B
TypeScript
Raw Normal View History

2024-01-04 21:20:47 +01:00
import { Message, Response } from "./messages.ts";
export type AdaptorSubscribeTypeFn = (msg: string) => Promise<string>;
2024-01-04 21:20:47 +01:00
export type RouteSubscribeTypeFn<T, U> = (
msg: Message<T>,
) => Promise<Response<U>>;