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
15 lines (14 loc) • 587 B
TypeScript
import { UIButton, UIButtonColorSpecifier } from "./UIButton";
import { UILink } from "./UILink";
export declare class UILinkButton extends UILink {
button: UIButton;
constructor(elementID?: string, elementType?: string, titleType?: string);
get titleLabel(): import("./UITextView").UITextView;
get imageView(): import("./UIImageView").UIImageView;
set colors(colors: UIButtonColorSpecifier);
get colors(): UIButtonColorSpecifier;
get viewHTMLElement(): HTMLLinkElement;
set target(target: string);
get target(): string;
layoutSubviews(): void;
}