mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
chore: add iconAvailable to ScraperInfo
This commit is contained in:
@@ -32,11 +32,12 @@ export class Scraper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class ScraperInfo {
|
export class ScraperInfo {
|
||||||
constructor(id, name, description, iconClass) {
|
constructor(id, name, description, iconClass, iconAvailable) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.description = description;
|
this.description = description;
|
||||||
this.iconClass = iconClass;
|
this.iconClass = iconClass;
|
||||||
|
this.iconAvailable = iconAvailable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user