1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Daniel Neto 2025-07-10 12:49:02 -03:00
parent 47f2df41f5
commit 24c0191104
2754 changed files with 152589 additions and 1339109 deletions

View file

@ -0,0 +1,9 @@
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;