New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@medux/react

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@medux/react - npm Package Compare versions

Comparing version
2.0.0-alpha.5
to
2.0.0-y.0
+3
-3
package.json
{
"name": "@medux/react",
"version": "2.0.0-alpha.5",
"version": "2.0.0-y.0",
"description": "The practice of @medux/core in react.",

@@ -45,7 +45,7 @@ "repository": "https://github.com/wooline/medux/tree/master/packages/react",

"@babel/runtime": "~7.12.5",
"@medux/core": "^2.0.0-alpha.5",
"@medux/core": "^2.0.0-y.0",
"@types/react-redux": "^7.0.0",
"react-redux": "^7.0.0"
},
"gitHead": "318586e1b7886643d6fc0bb5428f0eb169bbda73"
"gitHead": "47a08f6c82bde689a3653dd0795f8c246929bdeb"
}
/// <reference path="../env/global.d.ts" />
import * as core from '@medux/core';
import { RootModuleFacade, ExportModule, ModuleGetter, StoreOptions, ModuleStore } from '@medux/core';
import React, { ComponentType } from 'react';
export declare function renderApp(moduleGetter: ModuleGetter, appModuleName: string, appViewName: string, storeOptions: StoreOptions, container: string | Element | ((component: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>) => void) | undefined, beforeRender: (store: ModuleStore) => string[]): Promise<{
import { ComponentType, ReactElement } from 'react';
export declare function renderApp(moduleGetter: ModuleGetter, appModuleName: string, appViewName: string, storeOptions: StoreOptions, container: string | Element | ((component: ReactElement<any>) => void) | undefined, beforeRender: (store: ModuleStore) => string[]): Promise<{
store: core.ModuleStore;

@@ -7,0 +7,0 @@ }>;