Hi,
I am in process of making the grid in PowerApps. which is requires only the .ts files and no other. I want to Import the Jquery + Grid.
Index.ts
import {IInputs, IOutputs} from "./generated/ManifestTypes";
// @ts-ignore
import * as debug from "./libs/JS_HelloWorldControl.js";
import * as __grid from "./libs/typescript-grid-grouping";
// @ts-ignore
import * as $ from "./libs/jqx-all";
typescript-grid-grouping.ts
/// <reference path="jqwidgets.d.ts" />
After this references and imports. I could successfully compile the Project. but when I run the solution it throws and an $ is undefine. at
let dataAdapter = new $.jqx.dataAdapter(source);
in typescript-grid-grouping.ts
Any thoughts ?