mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
import { State } from "../../dom";
|
|
import { HintItem } from "../hintItem";
|
|
export type HintProps = {
|
|
index: number;
|
|
hintItem: HintItem;
|
|
refreshesSignal: State<number>;
|
|
onClick: (e: any) => void;
|
|
};
|
|
export declare const HintIcon: ({ index, hintItem, onClick, refreshesSignal, }: HintProps) => HTMLAnchorElement;
|