我有一个使用TypeScript和Onsen ui的AspNet应用程序。 当我从温泉中调用组件时,我使用了这些参考
// <reference path="TypeScriptHelper/Onsen/OnsPageController.ts"/>
但是我想使用一个名为devexpress的javascript库,它没有.d.ts定义 如何从我的打字稿文件中调用这些控件?
脚本被插入到index.html中 但是当我像这样在我的打字稿文件中调用它们时:
DevExpress.Dashboard.ResourceManager.embedBundledResources();
// Creates a new Web Dashboard control with the specified ID and settings:
var dashboardControl = new DevExpress.Dashboard.DashboardControl(document.getElementById("container"), {
// Configures an URL where the Web Dashboard's server-side is hosted:
endpoint: "https://demos.devexpress.com/services/dashboard/api",
workingMode: "Viewer",
extensions: {
"dashboard-panel": (control) => new DevExpress.Dashboard.DashboardPanelExtension(control)
}
});
无法识别 知道为什么以及如何修复它吗?
提前,