Skip to content

Commit 9978ec2

Browse files
committed
change declaration
1 parent a29dbfb commit 9978ec2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@r1tsuu/raylib",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"description": "Node.js bindings for raylib 5.5",
55
"main": "index.js",
66
"types": "src/generated/node-raylib.d.ts",

src/generated/node-raylib.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// GENERATED CODE: DO NOT MODIFY
2-
declare module "raylib" {
2+
declare module "@r1tsuu/raylib" {
33
/** Vector2, 2 components */
44
export interface Vector2 {
55
/** Vector x component. (float) */

tools/generate_templates/node-raylib-definitions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const StructInterface = (struct) => {
3131

3232
module.exports = ({ functions, structs, enums, blocklist }) => {
3333
return `// GENERATED CODE: DO NOT MODIFY
34-
declare module "raylib" {
34+
declare module "@r1tsuu/raylib" {
3535
${structs.map(StructInterface).join("\n ")}
3636
3737
/** RenderTexture, fbo for texture rendering */

0 commit comments

Comments
 (0)