mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 05:58:36 +00:00
* [react-redux] scaffold project * [react-redux] install redux dependencies * [react-redux] install redux typings * [react-redux] Add redux store and reducers and hook them up with the webpart * [react-redux] Add presentational and container components * [react-redux] Hook up webpart lifecycle methods with redux * [react-redux] configure reactive and non-reactive webpart versions * [react-redux] Add all the semicolons! * [react-redux] mark store as private in webpart * [react-redux] Update README.md * [react-redux] Fix typo in readme * [react-redux] only render webpart once
21 lines
569 B
TypeScript
21 lines
569 B
TypeScript
// Type definitions for System.js 0.18.4
|
|
// Project: https://github.com/systemjs/systemjs
|
|
// Definitions by: Ludovic HENIN <https://github.com/ludohenin/>, Nathan Walker <https://github.com/NathanWalker/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
interface System {
|
|
import(name: string): any;
|
|
defined: any;
|
|
amdDefine: () => void;
|
|
amdRequire: () => void;
|
|
baseURL: string;
|
|
paths: { [key: string]: string };
|
|
meta: { [key: string]: Object };
|
|
config: any;
|
|
}
|
|
|
|
declare var System: System;
|
|
|
|
declare module "systemjs" {
|
|
export = System;
|
|
} |