mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 01:12:59 +00:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import type {Chord} from "$lib/serial/chord"
|
|
import type {CharaLayout} from "$lib/serialization/layout"
|
|
|
|
export interface Profile {
|
|
name: string
|
|
layout: CharaLayout
|
|
chords: Chord[]
|
|
}
|