GoDoxy/schemas/docker.d.ts
2025-04-24 15:02:31 +08:00

5 lines
181 B
TypeScript

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