diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-02-06 00:46:15 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-02-06 00:46:15 +0100 |
commit | 9093d938a8eb905d524f0b4308e4cb15a64d0c2a (patch) | |
tree | ad3bbc510f4e9a7794082e03858ae25a0dceffbe /src-tauri/bindings | |
parent | 38ff76aad91bc1ce344cdb08366c23523dbb8e1b (diff) | |
download | FlightCore-9093d938a8eb905d524f0b4308e4cb15a64d0c2a.tar.gz FlightCore-9093d938a8eb905d524f0b4308e4cb15a64d0c2a.zip |
feat: Parse whether mod is enabled/disabled
Diffstat (limited to 'src-tauri/bindings')
-rw-r--r-- | src-tauri/bindings/ParsedLogResults.ts | 3 | ||||
-rw-r--r-- | src-tauri/bindings/ParsedModFromLog.ts | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src-tauri/bindings/ParsedLogResults.ts b/src-tauri/bindings/ParsedLogResults.ts index 5352fc7e..7bc3239e 100644 --- a/src-tauri/bindings/ParsedLogResults.ts +++ b/src-tauri/bindings/ParsedLogResults.ts @@ -1,3 +1,4 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. +import type { ParsedModFromLog } from "./ParsedModFromLog"; -export interface ParsedLogResults { northstar_launcher_version: string, installed_mods: Array<string>, }
\ No newline at end of file +export interface ParsedLogResults { northstar_launcher_version: string, installed_mods: Array<ParsedModFromLog>, }
\ No newline at end of file diff --git a/src-tauri/bindings/ParsedModFromLog.ts b/src-tauri/bindings/ParsedModFromLog.ts new file mode 100644 index 00000000..f71ed83d --- /dev/null +++ b/src-tauri/bindings/ParsedModFromLog.ts @@ -0,0 +1,3 @@ +// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. + +export interface ParsedModFromLog { mod_name: string, enabled: boolean, }
\ No newline at end of file |