seyfert/src/client/types.ts
2024-08-17 02:36:27 +00:00

7 lines
149 B
TypeScript

import type { HttpClient } from './httpclient';
export interface HttpServerAdapter {
client: HttpClient;
start?(path: `/${string}`): any;
}