-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.browser.ts
44 lines (36 loc) · 1.07 KB
/
index.browser.ts
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
38
39
40
41
42
43
44
import npmPackage from "./package.json";
import * as staffSvg from "./inc/staffSvg";
import * as staffNotation from "./inc/staffSvg/staffNotation";
import {recoverJSON} from "./inc/jsonRecovery";
import * as lilyParser from "./inc/lilyParser";
import LogRecorder from "./inc/logRecorder";
import * as constants from "./inc/constants";
import * as LilyNotation from "./inc/lilyNotation";
import StreamParser from "./inc/streamParser";
import {PitchContextTable, PitchContext} from "./inc/pitchContext";
import ScoreJSON from "./inc/scoreJSON";
import * as measureLayout from "./inc/measureLayout";
import SheetLive from "./app/components/sheet-live.vue";
import SheetSigns from "./app/components/sheet-signs.vue";
import * as SheetBaker from "./app/sheetBaker";
import ScoreBundle from "./app/scoreBundle";
const version = npmPackage.version;
export {
version,
staffSvg,
staffNotation,
recoverJSON,
measureLayout,
lilyParser,
LogRecorder,
constants,
LilyNotation,
StreamParser,
SheetLive,
SheetSigns,
SheetBaker,
ScoreBundle,
PitchContextTable,
PitchContext,
ScoreJSON,
};