Files
Homarr/tools/types.ts

8 lines
157 B
TypeScript
Raw Normal View History

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