GoDoxy/schemas/docker.ts
2025-01-17 14:10:13 +08:00

7 lines
200 B
TypeScript

import { IdleWatcherConfig } from "./providers/idlewatcher";
import { Route } from "./providers/routes";
//FIXME: fix this
export type DockerRoutes = {
[key: string]: Route & IdleWatcherConfig;
};