feat: add shadow optional field in SelectorObject

This commit is contained in:
RohitR311
2024-12-30 01:25:45 +05:30
parent b60f4b73b8
commit 9f9dc4e103

View File

@@ -32,6 +32,7 @@ export interface SelectorObject {
selector: string;
tag?: string;
attribute?: string;
shadow?: boolean;
[key: string]: any;
}