diff --git a/index.d.ts b/index.d.ts index 76dbf55..bbd1e63 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,6 +1,12 @@ declare module 'react-universal-component' { import * as React from 'react'; + type ReportChunksProps = { + report(chunkName: string | undefined): void; + }; + + export class ReportChunks extends React.Component {} + type ComponentType

= | React.ComponentType

| React.StatelessComponent