remove undefined from type

This commit is contained in:
2023-05-30 20:21:49 -04:00
parent c645597691
commit c7786b3b21

View File

@@ -11,5 +11,5 @@ export interface Setting {
} }
export type Fuses = { export type Fuses = {
[key: string]: Setting | undefined; [key: string]: Setting;
}; };