make fields in provider endpoint optional

This commit is contained in:
Milo Schwartz 2024-09-28 23:19:39 -04:00
parent 30a3ceb2f3
commit 5750c89b92
No known key found for this signature in database
4 changed files with 32 additions and 21 deletions

View file

@ -1,11 +1,11 @@
export type DynamicTraefikConfig = {
http: Http;
http?: Http;
};
export type Http = {
routers: Routers;
services: Services;
middlewares: Middlewares;
routers?: Routers;
services?: Services;
middlewares?: Middlewares;
};
export type Routers = {