@@ -198,17 +198,14 @@ export const getValueItemId = <T extends ValueItemType>(
198198export type ValueUpdateListener = ( newValue : unknown , oldValue : unknown ) => void
199199
200200export namespace Solid {
201- export type OwnerBase = import ( 'solid-js' ) . Owner
202- export type SourceMapValue = import ( 'solid-js/types/reactive/signal.d.ts' ) . SourceMapValue
203- export type Signal = import ( 'solid-js/types/reactive/signal.d.ts' ) . SignalState < unknown >
204- export type Computation = import ( 'solid-js/types/reactive/signal.d.ts' ) . Computation < unknown >
205- export type Memo = import ( 'solid-js/types/reactive/signal.d.ts' ) . Memo < unknown >
201+ export type OwnerBase = import ( 'solid-js' ) . Owner
202+ export type SourceMapValue = import ( 'solid-js/types/reactive/signal.d.ts' ) . SourceMapValue
203+ export type Signal = import ( 'solid-js/types/reactive/signal.d.ts' ) . SignalState < unknown >
204+ export type Computation = import ( 'solid-js/types/reactive/signal.d.ts' ) . Computation < unknown >
205+ export type Memo = import ( 'solid-js/types/reactive/signal.d.ts' ) . Memo < unknown >
206206 export type RootFunction < T > = import ( 'solid-js/types/reactive/signal.d.ts' ) . RootFunction < T >
207- export type EffectFunction =
208- import ( 'solid-js/types/reactive/signal.d.ts' ) . EffectFunction < unknown >
209- export type Component = import ( 'solid-js/types/reactive/signal.d.ts' ) . DevComponent < {
210- [ key : string ] : unknown
211- } >
207+ export type EffectFunction = import ( 'solid-js/types/reactive/signal.d.ts' ) . EffectFunction < unknown >
208+ export type Component = import ( 'solid-js/types/reactive/signal.d.ts' ) . DevComponent < { [ key : string ] : unknown } >
212209
213210 export type CatchError = Omit < Computation , 'fn' > & { fn : undefined }
214211
@@ -232,10 +229,10 @@ export namespace Solid {
232229 // STORE
233230 //
234231
235- export type StoreNode = import ( 'solid-js/store' ) . StoreNode
236- export type NotWrappable = import ( 'solid-js/store' ) . NotWrappable
232+ export type StoreNode = import ( 'solid-js/store' ) . StoreNode
233+ export type NotWrappable = import ( 'solid-js/store' ) . NotWrappable
237234 export type OnStoreNodeUpdate = import ( 'solid-js/store/types/store.d.ts' ) . OnStoreNodeUpdate
238- export type Store = SourceMapValue & { value : StoreNode }
235+ export type Store = SourceMapValue & { value : StoreNode }
239236}
240237
241238declare module 'solid-js/types/reactive/signal.d.ts' {
0 commit comments