regor 1.2.4 → 1.2.5
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/regor.d.ts +1 -1
- package/package.json +1 -1
package/dist/regor.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export type FlattenRef<TRef> = TRef extends Array<infer V1> ? Array<FlattenRef<V
|
|
|
76
76
|
export type Flat<TValueType> = Equals<RefParam<TValueType>, FlattenRef<TValueType>> extends true ? RefParam<TValueType> : FlattenRef<TValueType>;
|
|
77
77
|
export type ObserveCallback<TValueType> = (newValue: TValueType, eventSource?: any) => void;
|
|
78
78
|
export type StopObserving = () => void;
|
|
79
|
-
export declare interface IRegorContext extends Record<
|
|
79
|
+
export declare interface IRegorContext extends Record<string, unknown> {
|
|
80
80
|
components?: Record<string, Component>;
|
|
81
81
|
mounted?: () => void;
|
|
82
82
|
unmounted?: () => void;
|
package/package.json
CHANGED