File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ declare module 'react-universal-component' {
9999 * _Note: this only applies to the client when
100100 * your `UniversalComponent` uses dynamic expressions to switch between multiple
101101 * components._
102- *
102+ *
103103 * default: `false`
104104 */
105105 alwaysDelay : boolean ;
@@ -121,7 +121,7 @@ declare module 'react-universal-component' {
121121 * A callback function that receives the entire module.
122122 * It allows you to export and put to use things other than your
123123 * default component export, like reducers, sagas, etc.
124- *
124+ *
125125 * `onLoad` is fired directly before the component is rendered so you can setup
126126 * any reducers/etc it depends on. Unlike the `onAfter` prop, this option to the
127127 * `universal` HOC is only fired the first time the module is received. Also
@@ -166,7 +166,8 @@ declare module 'react-universal-component' {
166166}
167167
168168declare module 'react-universal-component/server' {
169+ const clearChunks : ( ) => void ;
169170 const flushChunkNames : ( ) => string [ ] ;
170171
171- export { flushChunkNames } ;
172+ export { clearChunks , flushChunkNames } ;
172173}
You can’t perform that action at this time.
0 commit comments