mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-06 04:58:39 +00:00
c909db5b4d
* [react-mobx] scaffold project + migrate to drop5 * [react-mobx] install mobx dependencies * [react-mobx] configure reactive and nonreactive webpart version * [react-mobx] add presentational and container components * [react-mobx] Replace description field with name * [react-mobx] Add mobx store and hook up webpart & components * [react-mobx] update readme * [react-mobx] remove custom tslint.config * [react-mobx] only render the 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;
|
|
} |