Added a types file in tools folder

This commit is contained in:
Thomas "ajnart" Camlong
2022-04-30 21:34:41 +02:00
parent 61df004ace
commit 793e45ff90

7
tools/types.ts Normal file
View File

@@ -0,0 +1,7 @@
import { serviceItem } from "../components/AppShelf/AppShelf.d";
export interface Config {
services: serviceItem[];
settings: {};
[key: string]: any;
}