Skip to content

Commit

Permalink
Add LiquidDocConcreteNode as a type of LiquidHtmlConcreteNode
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmengo committed Jan 13, 2025
1 parent f9f5efc commit 4e69c7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/liquid-html-parser/src/stage-1-cst.ts
Original file line number Diff line number Diff line change
Expand Up @@ -443,18 +443,18 @@ export type LiquidHtmlConcreteNode =
| ConcreteHtmlNode
| ConcreteLiquidNode
| ConcreteTextNode
| ConcreteYamlFrontmatterNode;
| ConcreteYamlFrontmatterNode
| LiquidDocConcreteNode;

export type LiquidConcreteNode =
| ConcreteLiquidNode
| ConcreteTextNode
| ConcreteYamlFrontmatterNode;

export type LiquidHtmlCST = LiquidHtmlConcreteNode[] | LiquidDocCST;
export type LiquidHtmlCST = LiquidHtmlConcreteNode[];

export type LiquidCST = LiquidConcreteNode[];

type LiquidDocCST = LiquidDocConcreteNode[];
export type LiquidDocConcreteNode = ConcreteLiquidDocParamNode;

interface Mapping {
Expand Down

0 comments on commit 4e69c7c

Please sign in to comment.