Skip to content

Commit

Permalink
fix: Add missing export StackElement
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Aug 11, 2021
1 parent 865fd0b commit d786b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface IParser {
characterData(content: string): void;
}

class StackElement {
export class StackElement {

private _content = "";
get content(): string {
Expand Down

0 comments on commit d786b2a

Please sign in to comment.