Files
wgenerator/src/app/modules/songs/services/line.ts

9 lines
156 B
TypeScript

import {LineType} from './line-type';
import {Chord} from './chord';
export interface Line {
type: LineType;
text: string;
chords: Chord[] | null;
}