-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
37 lines (26 loc) · 766 Bytes
/
index.ts
File metadata and controls
37 lines (26 loc) · 766 Bytes
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
34
35
36
37
import type ScoreJSON from "./inc/scoreJSON";
import npmPackage from "./package.json";
import * as staffSvg from "./inc/staffSvg";
import * as lilyParser from "./inc/lilyParser";
import * as backend from "./backend";
import LogRecorder from "./inc/logRecorder";
import * as constants from "./inc/constants";
import * as LilyNotation from "./inc/lilyNotation";
import {recoverJSON} from "./inc/jsonRecovery";
import {PitchContextTable, PitchContext} from "./inc/pitchContext";
import * as measureLayout from "./inc/measureLayout";
const version = npmPackage.version;
export {
version,
staffSvg,
lilyParser,
LilyNotation,
LogRecorder,
backend,
constants,
recoverJSON,
measureLayout,
PitchContextTable,
PitchContext,
};
export type { ScoreJSON };