fix npm package

This commit is contained in:
yusing
2025-01-25 02:36:22 +08:00
parent 4c311fd78e
commit 9e181d25ce
39 changed files with 984 additions and 5 deletions

5
schemas/docker.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import { IdleWatcherConfig } from "./providers/idlewatcher";
import { Route } from "./providers/routes";
export type DockerRoutes = {
[key: string]: Route & IdleWatcherConfig;
};