martijnversluis/ChordSheetJS

View on GitHub
src/chord_sheet/item.ts

Summary

Maintainability
A
0 mins
Test Coverage
import ChordLyricsPair from './chord_lyrics_pair';
import Comment from './comment';
import Tag from './tag';
import Ternary from './chord_pro/ternary';
import Literal from './chord_pro/literal';

type Item = ChordLyricsPair | Comment | Tag | Ternary | Literal;

export default Item;