tgui-angular
Version:
🚀 Angular UI library for Telegram Web Apps with modern components and theming support | 💼 Author is open to work opportunities | 📧 Contact: a.blagovestnov@gmail.com | 💬 Telegram: @ablagovestnov
21 lines (20 loc) • 1.25 kB
TypeScript
import { InputSignal } from '@angular/core';
import * as i0 from "@angular/core";
/**
* Link component provides a customizable anchor element.
* Used for navigation with proper styling following the Telegram UI guidelines.
*/
export declare class LinkComponent {
/** URL that the hyperlink points to */
href: InputSignal<string>;
/** Specifies where to open the linked document */
target: InputSignal<string>;
/** Specifies the relationship between the current document and the linked document */
rel: InputSignal<string>;
/** Specifies extra information about an element */
title: InputSignal<string>;
/** Accessible label for the link */
ariaLabel: InputSignal<string>;
static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "tgui-link", never, { "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "rel": { "alias": "rel"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
}