We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287fd43 commit 65ee536Copy full SHA for 65ee536
types/global.d.ts
@@ -1,5 +1,7 @@
1
+import 'segment-analytics';
2
+
3
interface Window {
- analytics: SegmentAnalytics.AnalyticsJS & {
4
+ analytics: AnalyticsJS & {
5
initialize(): void;
6
};
7
}
types/styled-jsx.d.ts
@@ -1,8 +1,9 @@
import 'react'
-declare module "react" {
- interface HTMLProps<T> {
+declare module 'react' {
+ interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
jsx?: boolean;
global?: boolean;
8
9
0 commit comments