Skip to content

Commit 9b054f5

Browse files
Merge pull request #39 from ShaderFrog/fix-type
Fixing type!
2 parents 9534aa5 + 3185213 commit 9b054f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"engines": {
44
"node": ">=16"
55
},
6-
"version": "5.3.1",
6+
"version": "5.3.2",
77
"type": "module",
88
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
99
"scripts": {

src/ast/ast-types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ export interface InterfaceDeclaratorNode extends BaseNode {
323323
qualifiers: TypeQualifiers;
324324
interface_type: IdentifierNode;
325325
lp: LiteralNode<'('>;
326-
declarations: StructDeclarationNode;
326+
declarations: StructDeclarationNode[];
327327
rp: LiteralNode<')'>;
328328
identifier?: QuantifiedIdentifierNode;
329329
}

0 commit comments

Comments
 (0)