ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1import "react"; 2 3// uses npm install actor-typeahead 4// from https://tangled.org/jakelazaroff.com/actor-typeahead <3 5 6declare module "react" { 7 namespace JSX { 8 interface IntrinsicElements { 9 "actor-typeahead": React.DetailedHTMLProps< 10 { 11 host?: string; 12 rows?: number; 13 children?: React.ReactNode; 14 }, 15 HTMLElement 16 >; 17 } 18 } 19}