Device db fuzy search!

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2024-04-11 14:48:10 -07:00
parent c85e2f6612
commit d63f8dff36
1226 changed files with 668 additions and 89 deletions

View File

@@ -0,0 +1,20 @@
export type DeviceDBEntry = {
name: string;
hash: number;
desc: string;
logic?: { [key: string]: string };
slots?: { name: string; typ: string }[];
modes?: { [key: string]: string };
conn?: { [key: string]: string[] };
};
export type DeviceDB = {
logic_enabled: string[];
slot_logic_enabled: string[];
devices: string[];
items: string[];
strutures: string[];
db: {
[key: string]: DeviceDBEntry;
};
};