Type alias TLibraries

TLibraries: {
    ace: typeof ace;
    gojs: typeof go;
    jQuery: any;
    jsoneditor: any;
    nope: any;
    plotly: typeof plotly;
    w2ui: any;
    w2uiHelpers: {
        nopeW2ui: any;
        w2alert: ((...args) => any);
        w2confirm: ((...args) => any);
        w2grid: ((...args) => any);
        w2popup: ((...args) => any);
        w2prompt: ((...args) => any);
        w2utils: any;
    };
}

Type containing the external libraries.

Type declaration

  • ace: typeof ace

    Ace is an embeddable code editor written in JavaScript. It matches the features and performance of native editors such as Sublime, Vim and TextMate. It can be easily embedded in any web page and JavaScript application. Ace is maintained as the primary editor for Cloud9 IDE and is the successor of the Mozilla Skywriter (Bespin) project.

    For more details checkout: https://ace.c9.io/#nav=about

  • gojs: typeof go

    GoJS is a JavaScript library that lets you easily create interactive diagrams in modern web browsers. GoJS supports graphical templates and data-binding of graphical object properties to model data. You only need to save and restore the model, consisting of simple JavaScript objects holding whatever properties your app needs. Many predefined tools and commands implement the standard behaviors that most diagrams need. Customization of appearance and behavior is mostly a matter of setting properties.

    For more details checkout: https://gojs.net/latest/

  • jQuery: any

    jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.

    Contains jQuery. See: https://jquery.com/

  • jsoneditor: any

    Contains a library for a dynamic JSON-Editor. This contains a tree-view, with edit options.

    For more details checkout: https://github.com/josdejong/jsoneditor

  • nope: any

    The Nope Library. It contains only the Browser build.

  • plotly: typeof plotly

    Built on top of d3.js and stack.gl, Plotly.js is a high-level, declarative charting library. plotly.js ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. plotly.js is free and open source and you can view the source, report issues or contribute on GitHub.

    For Tutorials and more checkout: https://plotly.com/javascript/

  • w2ui: any
  • w2uiHelpers: {
        nopeW2ui: any;
        w2alert: ((...args) => any);
        w2confirm: ((...args) => any);
        w2grid: ((...args) => any);
        w2popup: ((...args) => any);
        w2prompt: ((...args) => any);
        w2utils: any;
    }

    Out of the box w2ui is an all-in-one solution. It contains common UI widgets: Grid, Forms, Toolbars, Layout, Sidebar, Tabs, Popup and various field controls. You do not need to put together a collection of mismatched plugins to accomplish your goals.

    Contains the original w2ui Library. https://w2ui.com/web/

    • nopeW2ui: any

      The Custom W2UI-Helper provided by the nope-ui package.

    • w2alert: ((...args) => any)
        • (...args): any
        • Parameters

          • Rest ...args: any

          Returns any

    • w2confirm: ((...args) => any)
        • (...args): any
        • Parameters

          • Rest ...args: any

          Returns any

    • w2grid: ((...args) => any)
        • (...args): any
        • Parameters

          • Rest ...args: any

          Returns any

    • w2popup: ((...args) => any)
        • (...args): any
        • Parameters

          • Rest ...args: any

          Returns any

    • w2prompt: ((...args) => any)
        • (...args): any
        • Parameters

          • Rest ...args: any

          Returns any

    • w2utils: any

Generated using TypeDoc