aboutsummaryrefslogtreecommitdiff
path: root/src/view/options.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/options.ts')
-rw-r--r--src/view/options.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/view/options.ts b/src/view/options.ts
index 4c71be2..4a57f97 100644
--- a/src/view/options.ts
+++ b/src/view/options.ts
@@ -1,6 +1,9 @@
export type Options = {
major: boolean,
minor: boolean,
+ seventh: boolean,
+ minorSeventh: boolean,
+ majorSeventh: boolean,
bpm: number,
beatsPerChord: number
}
@@ -8,6 +11,9 @@ export type Options = {
let defaultOptions: Options = {
major: true,
minor: false,
+ seventh: false,
+ minorSeventh: false,
+ majorSeventh: false,
bpm: 90,
beatsPerChord: 4
}