@carbonorm/carbonreact 4.0.8 → 4.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/CarbonReact.d.ts +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/CarbonReact.tsx +1 -1
package/package.json
CHANGED
package/src/CarbonReact.tsx
CHANGED
|
@@ -62,7 +62,7 @@ abstract class CarbonReact<P = {}, S extends iCarbonReactState = iCarbonReactSta
|
|
|
62
62
|
|
|
63
63
|
protected target: typeof CarbonReact;
|
|
64
64
|
|
|
65
|
-
protected static _instance: CarbonReact<any, any
|
|
65
|
+
protected static _instance: ThisType<CarbonReact<any, any>>;
|
|
66
66
|
|
|
67
67
|
static getInstance<T extends CarbonReact<any, any>>(): T {
|
|
68
68
|
return this._instance as T;
|