mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-09 14:34:58 +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
13 lines
538 B
TypeScript
13 lines
538 B
TypeScript
// Type definitions for webpack in Microsoft ODSP projects
|
|
// Project: ODSP-WEBPACK
|
|
|
|
/*
|
|
* This definition of webpack require overrides all other definitions of require in our toolchain
|
|
* Make sure all other definitions of require are commented out e.g. in node.d.ts
|
|
*/
|
|
declare var require: {
|
|
(path: string): any;
|
|
(paths: string[], callback: (...modules: any[]) => void): void;
|
|
resolve: (id: string) => string;
|
|
ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void, path: string) => void;
|
|
}; |