Skip to content

Commit

Permalink
Export Callbacks interface (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
xorets authored Apr 1, 2021
1 parent e20c41f commit ab0b3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function isASCIIAlpha(c: string): boolean {
return (c >= "a" && c <= "z") || (c >= "A" && c <= "Z");
}

interface Callbacks {
export interface Callbacks {
onattribdata(value: string): void;
onattribend(quote: string | undefined | null): void;
onattribname(name: string): void;
Expand Down

0 comments on commit ab0b3fc

Please sign in to comment.