We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ffa42d3 + cdeab41 commit b799af4Copy full SHA for b799af4
package.json
@@ -3,7 +3,7 @@
3
"engines": {
4
"node": ">=16"
5
},
6
- "version": "6.0.1",
+ "version": "6.0.2",
7
"type": "module",
8
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
9
"scripts": {
src/preprocessor/preprocessor-parser.d.ts
@@ -1,11 +1,9 @@
1
-import type { PreprocessorProgram } from './preprocessor';
+import type { PreprocessorProgram, PreprocessorOptions } from './preprocessor';
2
import { SyntaxError } from '../error.ts';
-export type ParserOptions = {};
-
export function parse(
input: string,
- options?: ParserOptions
+ options?: PreprocessorOptions
): PreprocessorProgram;
10
11
export const SyntaxError: typeof SyntaxError;
0 commit comments