Files
Homarr/tools/types.ts

7 lines
156 B
TypeScript
Raw Normal View History

2022-04-30 21:34:41 +02:00
import { serviceItem } from "../components/AppShelf/AppShelf.d";
export interface Config {
services: serviceItem[];
settings: {};
[key: string]: any;
}