From 20c92238a8ffb2bfd2b2ae6a208844434fb7ebfb Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Tue, 25 Oct 2022 14:43:02 +0200 Subject: feat: Show installed mods (#28) Simply parses `enabledmods.json`. In the future we should also opt to check individual mods and compare with the JSON file. --- src-vue/src/utils/NorthstarMod.d.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src-vue/src/utils/NorthstarMod.d.ts (limited to 'src-vue/src/utils/NorthstarMod.d.ts') diff --git a/src-vue/src/utils/NorthstarMod.d.ts b/src-vue/src/utils/NorthstarMod.d.ts new file mode 100644 index 00000000..b0ce0ed3 --- /dev/null +++ b/src-vue/src/utils/NorthstarMod.d.ts @@ -0,0 +1,5 @@ +// Matches Rust struct (in lib.rs). +export interface NorthstarMod { + name: String, + enabled: bool, +} -- cgit v1.2.3