@cbpds/web-components
Version:
Web components for the CBP Design System.
21 lines (20 loc) • 549 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpLink {
private anchor;
host: HTMLElement;
href: string;
rel: string;
target: string;
download: boolean;
language: string;
shortcutKey: string;
accessibilityText: string;
disabled: boolean;
context: "light-inverts" | "light-always" | "dark-inverts" | "dark-always";
sx: any;
linkClick: EventEmitter;
handleClick(e: any): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}