diff --git a/package.json b/package.json index f728d47..745f28c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "type": "module", "name": "purify-js", - "version": "0.0.226", + "version": "0.0.227", "workspaces": [ "./apps/*", "./packages/*" diff --git a/packages/purify-js/lib/tags.ts b/packages/purify-js/lib/tags.ts index cb8ccbb..2b3f93b 100644 --- a/packages/purify-js/lib/tags.ts +++ b/packages/purify-js/lib/tags.ts @@ -88,7 +88,7 @@ export type Enhanced = T & { } export namespace Enhanced { export type OnDisconnected = () => void - export type OnConnected = (element: Enhanced) => void | OnDisconnected + export type OnConnected = (element: Enhanced) => void | OnDisconnected export type OffConnected = () => void }