index.d.ts 713 B

1234567891011121314151617181920
  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>;