New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rive-app/canvas-advanced

Package Overview
Dependencies
Maintainers
4
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rive-app/canvas-advanced - npm Package Compare versions

Comparing version

to
1.0.82

2

package.json
{
"name": "@rive-app/canvas-advanced",
"version": "1.0.81",
"version": "1.0.82",
"description": "Rive's lightweight low-level canvas based web api.",

@@ -5,0 +5,0 @@ "main": "canvas_advanced.mjs",

@@ -661,10 +661,11 @@ interface RiveOptions {

export declare class Vec2D {
constructor(x: number, y: number);
/**
* Returns the x coordinate of the vector
*/
x(): void;
x(): number;
/**
* Returns the y coordinate of the vector
*/
y(): void;
y(): number;
}