@gmod/bed 2.1.8 → 2.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [2.1.9](https://github.com/GMOD/bed-js/compare/v2.1.8...v2.1.9) (2026-01-19)
2
+
3
+
4
+
1
5
  ## [2.1.8](https://github.com/GMOD/bed-js/compare/v2.1.7...v2.1.8) (2026-01-19)
2
6
 
3
7
 
@@ -0,0 +1,14 @@
1
+ declare function peg$SyntaxError(message: any, expected: any, found: any, location: any): void;
2
+ declare class peg$SyntaxError {
3
+ constructor(message: any, expected: any, found: any, location: any);
4
+ message: any;
5
+ expected: any;
6
+ found: any;
7
+ location: any;
8
+ name: string;
9
+ }
10
+ declare namespace peg$SyntaxError {
11
+ function buildMessage(expected: any, found: any): string;
12
+ }
13
+ declare function peg$parse(input: any, options: any): {};
14
+ export { peg$SyntaxError as SyntaxError, peg$parse as parse };