Skip to content

Commit 3185213

Browse files
committed
Fixing type!
1 parent 9534aa5 commit 3185213

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)