From 793e45ff90cfb1516832057de5a08a42ae2f3f84 Mon Sep 17 00:00:00 2001 From: "Thomas \"ajnart\" Camlong" Date: Sat, 30 Apr 2022 21:34:41 +0200 Subject: [PATCH] Added a types file in tools folder --- tools/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tools/types.ts diff --git a/tools/types.ts b/tools/types.ts new file mode 100644 index 000000000..1adc83639 --- /dev/null +++ b/tools/types.ts @@ -0,0 +1,7 @@ +import { serviceItem } from "../components/AppShelf/AppShelf.d"; + +export interface Config { + services: serviceItem[]; + settings: {}; + [key: string]: any; +} \ No newline at end of file