File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
"engines" : {
4
4
"node" : " >=16"
5
5
},
6
- "version" : " 4.1.0 " ,
6
+ "version" : " 4.1.1 " ,
7
7
"type" : " module" ,
8
8
"description" : " A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments" ,
9
9
"scripts" : {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export interface BaseNode {
27
27
location ?: LocationObject ;
28
28
}
29
29
30
- type Whitespace = string | string [ ] ;
30
+ export type Whitespace = string | string [ ] ;
31
31
32
32
// Types reused across nodes
33
33
export type TypeQualifiers = (
@@ -222,7 +222,7 @@ export interface FloatConstantNode extends BaseNode {
222
222
whitespace : Whitespace ;
223
223
}
224
224
225
- type SimpleStatement =
225
+ export type SimpleStatement =
226
226
| ContinueStatementNode
227
227
| BreakStatementNode
228
228
| ReturnStatementNode
You can’t perform that action at this time.
0 commit comments