diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-12-12 20:39:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 20:39:47 +0100 |
commit | baa4d8b07b4cad0f56ad9719aaefc7ee8a615ff4 (patch) | |
tree | 0fb2a90f392aba9a9d5e9bdca0044df3914753db /src-vue/src | |
parent | e768d9ffab874d5991336464c80eb3b9e5a28b0c (diff) | |
download | FlightCore-baa4d8b07b4cad0f56ad9719aaefc7ee8a615ff4.tar.gz FlightCore-baa4d8b07b4cad0f56ad9719aaefc7ee8a615ff4.zip |
feat: Expose installed NS mod directory (#109)
* feat: Expose installed NS mod directory
This allows other functions to get a mod directory directly which is
useful for e.g. deleting a mod.
* refactor: Return vector of NorthstarMod
instead of unnamed Tuples
Diffstat (limited to 'src-vue/src')
-rw-r--r-- | src-vue/src/utils/NorthstarMod.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src-vue/src/utils/NorthstarMod.d.ts b/src-vue/src/utils/NorthstarMod.d.ts index 747836a2..5e119683 100644 --- a/src-vue/src/utils/NorthstarMod.d.ts +++ b/src-vue/src/utils/NorthstarMod.d.ts @@ -3,4 +3,5 @@ export interface NorthstarMod { name: string, thunderstore_mod_string?: string, enabled: bool, + directory: string, } |