amotify 0.0.64 → 0.0.65

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/@types/amot.tsx CHANGED
@@ -71,6 +71,7 @@ declare global {
71
71
 
72
72
  namespace global {
73
73
  type LaunchReactApplicationInput = {
74
+ baseElement?: HTMLElement | string
74
75
  reactElement: ReactElement
75
76
  nonRouter?: boolean
76
77
  isRoot?: boolean
@@ -128,9 +129,6 @@ declare global {
128
129
  useStore: global.useStoreParams
129
130
  useRecycle: global.useRecycleParams
130
131
  LaunchReactApplication( params: global.LaunchReactApplicationInput ): void
131
- LaunchSubApplication( params: global.LaunchReactApplicationInput & {
132
- baseElement?: HTMLElement | string
133
- } ): void
134
132
  }
135
133
  }
136
134