8 lines
138 B
TypeScript
8 lines
138 B
TypeScript
import "react";
|
|
|
|
declare module "react" {
|
|
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
tw?: string;
|
|
}
|
|
}
|