use-lazy-module-federation
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -1,9 +0,9 @@ | ||
export declare type useLazyModuleFederationProps<T = any> = (params: { | ||
url?: string; | ||
scope?: string; | ||
module?: string; | ||
}) => ({ | ||
import { FunctionComponent } from "react"; | ||
export declare const useLazyModuleFederation: <T = any>({ url, scope, module }: { | ||
url?: string | undefined; | ||
scope?: string | undefined; | ||
module?: string | undefined; | ||
}) => { | ||
errorLoading: boolean; | ||
Component: T; | ||
}); | ||
export declare const useLazyModuleFederation: useLazyModuleFederationProps; | ||
Component: FunctionComponent<T>; | ||
}; |
{ | ||
"name": "use-lazy-module-federation", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17082