Files
Homarr/tools/types.ts
2022-04-30 21:34:41 +02:00

7 lines
156 B
TypeScript

import { serviceItem } from "../components/AppShelf/AppShelf.d";
export interface Config {
services: serviceItem[];
settings: {};
[key: string]: any;
}