GoDoxy/schemas/docker.d.ts

5 lines
181 B
TypeScript

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