mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
|
import type * as React from 'react';
|
||
|
|
||
|
export type HTMLAriaDataAttributes = React.AriaAttributes & {
|
||
|
[key: `data-${string}`]: unknown;
|
||
|
} & Pick<React.HTMLAttributes<HTMLDivElement>, 'role'>;
|