Skip to content

Commit

Permalink
Merge pull request #39 from ShaderFrog/fix-type
Browse files Browse the repository at this point in the history
Fixing type!
  • Loading branch information
AndrewRayCode authored Oct 6, 2024
2 parents 9534aa5 + 3185213 commit 9b054f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"engines": {
"node": ">=16"
},
"version": "5.3.1",
"version": "5.3.2",
"type": "module",
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/ast/ast-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export interface InterfaceDeclaratorNode extends BaseNode {
qualifiers: TypeQualifiers;
interface_type: IdentifierNode;
lp: LiteralNode<'('>;
declarations: StructDeclarationNode;
declarations: StructDeclarationNode[];
rp: LiteralNode<')'>;
identifier?: QuantifiedIdentifierNode;
}
Expand Down

0 comments on commit 9b054f5

Please sign in to comment.