Skip to content

Commit

Permalink
Update declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Jan 30, 2025
1 parent 6f65456 commit 1705c44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion types/three/src/nodes/core/NodeVar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ declare class NodeVar {
name: string;
type: string;
readOnly: boolean;
count: number | null;
/**
* Constructs a new node variable.
*
* @param {String} name - The name of the variable.
* @param {String} type - The type of the variable.
* @param {Boolean} [readOnly=false] - The read-only flag.
* @param {Number?} [count=null] - The size.
*/
constructor(name: string, type: string, readOnly?: boolean);
constructor(name: string, type: string, readOnly?: boolean, count?: number | null);
}
export default NodeVar;

0 comments on commit 1705c44

Please sign in to comment.