bugfixing

This commit is contained in:
2020-06-14 15:38:19 +02:00
parent 7578c16188
commit 1e1e127f13
12 changed files with 54 additions and 43 deletions

View File

@@ -0,0 +1,8 @@
import {LineType} from './line-type';
import {Chord} from './chord';
export interface Line {
type: LineType;
text: string;
chords?: Chord[];
}