chordsheetjs 15.3.0 → 15.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bundle.js +4 -1
- package/lib/bundle.min.js +1 -1
- package/lib/index.js +4 -1
- package/lib/index.js.map +1 -1
- package/lib/main.d.ts +4 -1
- package/lib/main.d.ts.map +1 -1
- package/lib/module.js +4 -1
- package/lib/module.js.map +1 -1
- package/lib/pdf/index.js +4 -1
- package/lib/pdf/index.js.map +1 -1
- package/lib/pdf/main.d.ts +3 -0
- package/lib/pdf/main.d.ts.map +1 -1
- package/lib/pdf/module.js +4 -1
- package/lib/pdf/module.js.map +1 -1
- package/package.json +1 -1
package/lib/pdf/main.d.ts
CHANGED
|
@@ -1043,6 +1043,9 @@ declare class Formatter<T extends BaseFormatterConfiguration = BaseFormatterConf
|
|
|
1043
1043
|
* @param {boolean} [configuration.useUnicodeModifiers=false] Whether or not to use unicode flat and sharp
|
|
1044
1044
|
* symbols.
|
|
1045
1045
|
* @param {boolean} [configuration.normalizeChords=true] Whether or not to automatically normalize chords
|
|
1046
|
+
* @param {boolean} [configuration.normalizeChordSuffix=true] Whether to normalize chord suffixes (e.g.
|
|
1047
|
+
* `sus2` to `2`, `maj7` to `ma7`). Only takes effect when `normalizeChords` is `true`. Defaults to `false`
|
|
1048
|
+
* for {@link ChordProFormatter} so ChordPro round-trips preserve the user's suffix variant.
|
|
1046
1049
|
*/
|
|
1047
1050
|
constructor(configuration?: DeepPartial<T>);
|
|
1048
1051
|
/**
|