nrwl--nx
9 行
158 B
TypeScript
9 行
158 B
TypeScript
import 'react';
|
|
|
|
declare module 'react' {
|
|
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
|
|
jsx?: boolean;
|
|
global?: boolean;
|
|
}
|
|
}
|