9 lines
223 B
TypeScript
Executable file
9 lines
223 B
TypeScript
Executable file
interface AXObjectSchema {
|
|
name: string;
|
|
attributes?: {
|
|
name: string;
|
|
value?: string;
|
|
}[];
|
|
}
|
|
export declare function getInteractiveElementAXObjectSchemas(): AXObjectSchema[];
|
|
export {};
|