GoDoxy/schemas/docker.d.ts
2025-01-25 02:36:22 +08:00

5 lines
183 B
TypeScript

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