Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
Signed-off-by: JP-Ellis <[email protected]>
  • Loading branch information
JP-Ellis committed Dec 6, 2024
1 parent bfe202d commit 246cb68
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/v3/xml/xmlText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { Matcher } from '../types';
import { XmlNode } from './xmlNode';

export class XmlText extends XmlNode {
constructor(public content: string, public matcher?: Matcher<string>) {
constructor(
public content: string,
public matcher?: Matcher<string>
) {
super();
}
}

0 comments on commit 246cb68

Please sign in to comment.