feat: expand ElementInfo interface

This commit is contained in:
karishmas6
2024-10-04 22:33:40 +05:30
parent e369fd5432
commit a68955e3b4

View File

@@ -14,6 +14,9 @@ interface ElementInfo {
innerText?: string;
url?: string;
imageUrl?: string;
attributes?: Record<string, string>;
innerHTML?: string;
outerHTML?: string;
}
interface AttributeOption {