diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..3e391de
Binary files /dev/null and b/.DS_Store differ
diff --git a/app.ts b/app.ts
index 6bfcda9..4cd4655 100644
--- a/app.ts
+++ b/app.ts
@@ -1,9 +1,11 @@
-import * as Tone from 'tone';
-
// initialize four synth voices
+// @ts-expect-error: namespace, Tone, for all of the following "expect-error calls"
const soprano = new Tone.Synth().toDestination();
+// @ts-expect-error
const alto = new Tone.Synth().toDestination();
+// @ts-expect-error
const tenor = new Tone.Synth().toDestination();
+// @ts-expect-error
const bass = new Tone.Synth().toDestination();
// test function for audio is armed
@@ -26,6 +28,7 @@ export const soundChord = (pitches: string[]) => {
// set up transport
const transportStart = document.getElementById('transport-start');
+// @ts-expect-error
const loop = new Tone.Loop((time) => {
audioTest();
}, "8n").start(0);
@@ -33,5 +36,6 @@ const loop = new Tone.Loop((time) => {
loop.probability = 0.8;
transportStart.onclick = () => {
+ // @ts-expect-error
Tone.Transport.start();
}
diff --git a/index.html b/index.html
index bdfb6df..7388fb8 100644
--- a/index.html
+++ b/index.html
@@ -119,5 +119,12 @@
+
+
+
+
+
+
+