Spaces:
Sleeping
Sleeping
File size: 549 Bytes
d605f27 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import SheetDocument from "./staffSvg/sheetDocument";
import {HashTable} from "./staffSvg/tokenizeElements";
import * as LilyNotation from "./lilyNotation";
export interface ScoreMeta {
title: string;
composer: string;
pageSize: {
width: number,
height: number,
};
pageCount: number;
staffSize: number;
trackInfos: {[key: string]: string}[];
}
interface ScoreJSON {
version?: string;
hash?: number;
meta: ScoreMeta;
doc: SheetDocument;
hashTable: HashTable;
lilyNotation: LilyNotation.Notation;
}
export default ScoreJSON;
|