SYMBOL INDEX (43 symbols across 21 files) FILE: src/app/(authenticatedRoutes)/layout.tsx function Layout (line 5) | function Layout({ children }: PropsWithChildren) { FILE: src/app/_components/ServerDataStreaming.tsx function ServerDataStreaming (line 3) | async function ServerDataStreaming() { FILE: src/app/layout.tsx function RootLayout (line 22) | async function RootLayout({ children }: { children: React.ReactNode }) { FILE: src/components/FormInput/FormInput.tsx type FormInputProps (line 9) | type FormInputProps = { FILE: src/components/Icons/Icons.tsx type Icon (line 51) | type Icon = LucideIcon; FILE: src/components/PrefetchTRPCQuery/PrefetchTRPCQuery.tsx type AccessPaths (line 6) | type AccessPaths = { type ValueTypeAt (line 12) | type ValueTypeAt = P extends `${infer K}.${infer L}` type ParamsType (line 20) | type ParamsType> = ValueTypeAt< FILE: src/components/TailwindIndicator/TailwindIndicator.tsx function TailwindIndicator (line 1) | function TailwindIndicator() { FILE: src/components/ui/button.tsx type ButtonProps (line 36) | interface ButtonProps FILE: src/components/ui/form.tsx type FormFieldContextValue (line 18) | type FormFieldContextValue< type FormItemContextValue (line 65) | type FormItemContextValue = { FILE: src/components/ui/input.tsx type InputProps (line 5) | interface InputProps FILE: src/components/ui/toast.tsx type ToastProps (line 119) | type ToastProps = React.ComponentPropsWithoutRef; type ToastActionElement (line 121) | type ToastActionElement = React.ReactElement; FILE: src/components/ui/toaster.tsx function Toaster (line 13) | function Toaster() { FILE: src/components/ui/use-toast.ts constant TOAST_LIMIT (line 6) | const TOAST_LIMIT = 1; constant TOAST_REMOVE_DELAY (line 7) | const TOAST_REMOVE_DELAY = 1000000; type ToasterToast (line 9) | type ToasterToast = ToastProps & { function genId (line 25) | function genId() { type ActionType (line 31) | type ActionType = typeof actionTypes; type Action (line 33) | type Action = type State (line 51) | interface State { function dispatch (line 134) | function dispatch(action: Action) { type Toast (line 141) | type Toast = Omit; function toast (line 143) | function toast({ ...props }: Toast) { function useToast (line 172) | function useToast() { FILE: src/providers/index.tsx function Providers (line 10) | function Providers({ children }: PropsWithChildren) { FILE: src/server/api/root.ts type AppRouter (line 16) | type AppRouter = typeof appRouter; FILE: src/server/api/trpc.ts method errorFormatter (line 45) | errorFormatter({ shape, error }) { FILE: src/server/supabase/supabaseTypes.ts type Json (line 1) | type Json = type Database (line 9) | interface Database { FILE: src/trpc/react.tsx method onSuccess (line 18) | async onSuccess(opts) { function TRPCReactProvider (line 33) | function TRPCReactProvider(props: { FILE: src/trpc/shared.ts function getBaseUrl (line 8) | function getBaseUrl() { function getUrl (line 15) | function getUrl() { type RouterInputs (line 24) | type RouterInputs = inferRouterInputs; type RouterOutputs (line 31) | type RouterOutputs = inferRouterOutputs; FILE: src/utils/cn.ts function cn (line 4) | function cn(...inputs: ClassValue[]) { FILE: supabase/migrations/20231004185846_initial_profiles.sql type "public" (line 1) | create table "public"."profiles" ( type profiles_pkey (line 12) | CREATE UNIQUE INDEX profiles_pkey ON public.profiles USING btree (id) type profiles_email_key (line 14) | CREATE UNIQUE INDEX profiles_email_key ON public.profiles USING btree (e... function public (line 26) | CREATE OR REPLACE FUNCTION public.handle_new_user()