formatting

This commit is contained in:
Joel Wetzell
2026-04-05 18:09:47 -05:00
parent 10ff26e48c
commit e66195d702
24 changed files with 248 additions and 258 deletions
+4 -5
View File
@@ -1,5 +1,5 @@
export type Config = {
api: ApiConfig
api: ApiConfig;
modules: ModuleConfig[];
routes: RouteConfig[];
};
@@ -31,20 +31,19 @@ export type ProcessorConfig = {
params?: Record<string, any>;
};
export type ModuleError = {
index: number;
config: ModuleConfig;
error: string;
}
};
export type RouteError = {
index: number;
config: RouteConfig;
error: string;
}
};
export type ConfigError = {
moduleErrors?: ModuleError[];
routeErrors?: RouteError[];
}
};