uicore-ts
Version:
UICore is a library to build native-like user interfaces using pure Typescript. No HTML is needed at all. Components are described as TS classes and all user interactions are handled explicitly. This library is strongly inspired by the UIKit framework tha
17 lines (16 loc) • 657 B
TypeScript
import "./UICoreExtensions";
import { UILanguageService } from "./UIInterfaces";
import { UIObject } from "./UIObject";
import { UIViewController } from "./UIViewController";
export declare class UICore extends UIObject {
paddingLength: number;
rootViewController: UIViewController;
static RootViewControllerClass: typeof UIViewController;
static main: UICore;
static languageService: UILanguageService;
static readonly broadcastEventName: {
RouteDidChange: string;
WindowDidResize: string;
};
constructor(rootDivElementID: string, rootViewControllerClass: typeof UIViewController, paddingLength?: number);
}