New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aliyun-obv/app-loader

Package Overview
Dependencies
Maintainers
0
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aliyun-obv/app-loader - npm Package Compare versions

Comparing version 0.3.6 to 0.3.7

LICENSE

9

dist/types/plugin/ObvizAsyncComponent.d.ts
import React from 'react';
export type LazyComponent<T extends React.ComponentType<any>> = React.ExoticComponent<React.ComponentPropsWithRef<T>>;
export type LazyComponent<T extends React.ComponentType<any>, K = {}> = React.ExoticComponent<React.ComponentPropsWithRef<T> & K>;
export type FilteredValueOfKey<T, K extends keyof T, U> = T[K] extends U ? T[K] : never;
export declare function ObvizAsyncComponent<O, T extends React.ComponentType<any>, K extends keyof O>(factory: () => Promise<O>, exportName: K): LazyComponent<FilteredValueOfKey<O, K, T>>;
export interface LoaderAppProps {
appProps?: {
baserouter?: string;
};
}
export declare function ObvizAsyncComponent<O, T extends React.ComponentType<any>, K extends keyof O>(factory: () => Promise<O>, exportName: K): LazyComponent<FilteredValueOfKey<O, K, T>, LoaderAppProps>;

@@ -6,2 +6,3 @@ {

"module": "dist/es/index.js",
"license": "Apache-2.0",
"types": "dist/types/index.d.ts",

@@ -17,3 +18,3 @@ "scripts": {

"devDependencies": {},
"version": "0.3.6"
"version": "0.3.7"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc