Variable: SelectorHintSchema
const SelectorHintSchema: ZodObject<{
ariaLabel: ZodOptional<ZodString>;
expectedText: ZodOptional<ZodString>;
prefer: ZodOptional<ZodArray<ZodEnum<{
css: "css";
role: "role";
testid: "testid";
text: "text";
}>>>;
role: ZodOptional<ZodString>;
testid: ZodOptional<ZodString>;
}, $strip>;
Defined in: packages/uimatch-selector-anchors/src/types/schema.ts:17
Selector hint schema for generating selectors