UNPKG

@playcanvas/pcui

Version:

User interface component library for the web

21 lines (20 loc) 815 B
/** * PCUI is a front-end framework designed for creating user interfaces in web applications. It is * particularly well-suited for building browser-based tools. It offers a comprehensive set of UI * components like buttons, sliders, menus and data inputs. * * PCUI is written in TypeScript. The API can be used from both TypeScript and JavaScript. A React * wrapper is provided for easy integration with React applications. * * @module PCUI */ export * from './binding'; export * from './components'; /** * The version of the PCUI library. This is a string in semantic version format of `major.minor.patch`. */ export declare const version = "PACKAGE_VERSION"; /** * The git revision of the PCUI library. This is a string of the git commit hash. */ export declare const revision = "PACKAGE_REVISION";