import { Tab } from './Tabs'; import { InstrumentType } from './Instrument'; export interface ChordTabOption { chords?: string; instrument?: string; level?: string; tabs?: Tab[]; title?: string; } export interface Chord { 'chord-id'?: string; fingers?: string; id: string; instrument?: InstrumentType; name?: string; shape?: string; title?: string; }