You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
713 B

1 month ago
  1. export declare const ariaProps: {
  2. ariaLabel: StringConstructor;
  3. ariaOrientation: {
  4. readonly type: import("vue").PropType<string>;
  5. readonly required: false;
  6. readonly validator: ((val: unknown) => boolean) | undefined;
  7. __epPropKey: true;
  8. };
  9. ariaControls: StringConstructor;
  10. };
  11. export declare const useAriaProps: <T extends keyof typeof ariaProps>(arias: Array<T>) => Pick<{
  12. ariaLabel: StringConstructor;
  13. ariaOrientation: {
  14. readonly type: import("vue").PropType<string>;
  15. readonly required: false;
  16. readonly validator: ((val: unknown) => boolean) | undefined;
  17. __epPropKey: true;
  18. };
  19. ariaControls: StringConstructor;
  20. }, T>;