UNPKG

397 BTypeScriptView Raw
1/**
2 * Dev tool class used for framing integration with Redux DevTools
3 *
4 * @class FramingTools
5 */
6export declare class FramingTools {
7 private static _instance;
8 instantiatedControllers: any;
9 constructor();
10 static readonly Instance: FramingTools;
11 addController(framerName: string, controller: any): void;
12 getAllControllers(): any;
13 getControllerByKey(key: any): any;
14}