chordsheetjs 15.5.1 → 15.5.2
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 +36 -1
- package/lib/bundle.min.js +64 -64
- package/lib/index.js +46 -1
- package/lib/index.js.map +1 -1
- package/lib/main.d.ts +6 -1
- package/lib/main.d.ts.map +1 -1
- package/lib/module.js +46 -1
- package/lib/module.js.map +1 -1
- package/lib/pdf/index.js +46 -1
- package/lib/pdf/index.js.map +1 -1
- package/lib/pdf/main.d.ts +4 -0
- package/lib/pdf/main.d.ts.map +1 -1
- package/lib/pdf/module.js +46 -1
- package/lib/pdf/module.js.map +1 -1
- package/package.json +1 -1
package/lib/pdf/main.d.ts
CHANGED
|
@@ -262,6 +262,7 @@ declare class Chord implements ChordProperties {
|
|
|
262
262
|
* Represents a comment. See https://www.chordpro.org/chordpro/chordpro-file-format-specification/#overview
|
|
263
263
|
*/
|
|
264
264
|
declare class Comment {
|
|
265
|
+
static [Symbol.hasInstance](instance: unknown): boolean;
|
|
265
266
|
content: string;
|
|
266
267
|
parentLine: Line | null;
|
|
267
268
|
constructor(content: string);
|
|
@@ -440,6 +441,7 @@ declare class ChordDefinition {
|
|
|
440
441
|
* Represents a tag/directive. See https://www.chordpro.org/chordpro/chordpro-directives/
|
|
441
442
|
*/
|
|
442
443
|
declare class Tag extends AstComponent {
|
|
444
|
+
static [Symbol.hasInstance](instance: unknown): boolean;
|
|
443
445
|
_isMetaTag: boolean;
|
|
444
446
|
_originalName: string;
|
|
445
447
|
_name: string;
|
|
@@ -605,6 +607,7 @@ declare abstract class Evaluatable extends AstComponent {
|
|
|
605
607
|
abstract clone(): Evaluatable;
|
|
606
608
|
}
|
|
607
609
|
declare class Literal extends Evaluatable {
|
|
610
|
+
static [Symbol.hasInstance](instance: unknown): boolean;
|
|
608
611
|
string: string;
|
|
609
612
|
constructor(string: string);
|
|
610
613
|
evaluate(): string;
|
|
@@ -763,6 +766,7 @@ declare class Line {
|
|
|
763
766
|
* Represents a chord with the corresponding (partial) lyrics
|
|
764
767
|
*/
|
|
765
768
|
declare class ChordLyricsPair {
|
|
769
|
+
static [Symbol.hasInstance](instance: unknown): boolean;
|
|
766
770
|
chords: string;
|
|
767
771
|
lyrics: string | null;
|
|
768
772
|
annotation: string | null;
|