mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 21:46:08 +00:00
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import type { HttpClient } from './httpclient';
|
|
|
|
export interface HttpServerAdapter {
|
|
client: HttpClient;
|
|
start?(path: `/${string}`): any;
|
|
}
|