node-red-contrib-uibuilder
Version:
Easily create data-driven web UI's for Node-RED. Single- & Multi-page. Multiple UI's. Work with existing web development workflows or mix and match with no-code/low-code features.
13 lines (10 loc) • 309 B
TypeScript
/// <reference path="./uibuilder.module.d.ts" />
/**
* Make the uibuilder instance globally available (from uibuilder.module.d.ts)
* @version 7.3.0
*/
declare global {
// Use typeof import to reference the Uib class from the module
const uibuilder: import("./uibuilder.module").Uib;
}
export {};