diff --git a/.changeset/chilled-badgers-exist.md b/.changeset/chilled-badgers-exist.md new file mode 100644 index 000000000..af08e80d8 --- /dev/null +++ b/.changeset/chilled-badgers-exist.md @@ -0,0 +1,5 @@ +--- +"solid-js": patch +--- + +Export `ContextProviderComponent`, `ResolvedChildren` and `ResolvedJSXElement` types diff --git a/packages/solid/src/index.ts b/packages/solid/src/index.ts index bb4e4b004..54cb9b71a 100644 --- a/packages/solid/src/index.ts +++ b/packages/solid/src/index.ts @@ -3,6 +3,7 @@ export { $PROXY, $TRACK, batch, + catchError, children, createComputed, createContext, @@ -23,7 +24,6 @@ export { on, onCleanup, onError, - catchError, onMount, runWithOwner, startTransition, @@ -36,6 +36,7 @@ export type { AccessorArray, ChildrenReturn, Context, + ContextProviderComponent, EffectFunction, EffectOptions, InitializedResource, @@ -46,6 +47,8 @@ export type { OnEffectFunction, OnOptions, Owner, + ResolvedChildren, + ResolvedJSXElement, Resource, ResourceActions, ResourceFetcher,