Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#VSCode stuff
.vscode

#Idea stuff
.idea

# Node stuff
node_modules

Expand Down
10 changes: 10 additions & 0 deletions js/src/rive_advanced.mjs.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,16 @@ export declare class Artboard {
* @param path - Path of where the text exists at an artboard level
*/
textByPath(name: string, path: string): TextValueRun;
/**
* Returns the number of TextValueRun objects in the artboard
* @returns number of TextValueRun objects in the artboard
*/
textValueRunCount(): number;
/**
* Returns a reference for a TextValueRun object to get/set a text value for
* @param index - Index of the Text Run to grab a reference to
*/
textValueRunByIndex(index: number): TextValueRun;
/**
* Getter and setter for the artboard width
*/
Expand Down