mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 17:03:42 +00:00
migrate layout icons form unicode to material symbols
migrate keymap to yml
This commit is contained in:
16
src/lib/assets/keymaps/keymap.d.ts
vendored
Normal file
16
src/lib/assets/keymaps/keymap.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export interface KeymapCategory {
|
||||
name: string
|
||||
description: string
|
||||
icon?: string
|
||||
type?: "unassigned"
|
||||
actions: Record<number, Partial<ActionInfo>>
|
||||
}
|
||||
|
||||
export interface ActionInfo {
|
||||
id: string
|
||||
title: string
|
||||
icon: string
|
||||
description: string
|
||||
variant: "left" | "right"
|
||||
variantOf: number
|
||||
}
|
||||
Reference in New Issue
Block a user