Files
bsky-social-app/src/components/hooks/useWelcomeModal.shared.ts
T
Samuel Newman 007c21fa8e Add moduleSuffixes to tsconfig (#11146)
Co-authored-by: Claude <noreply@anthropic.com>
2026-07-16 12:47:53 -07:00

6 lines
95 B
TypeScript

export type WelcomeModalControl = {
isOpen: boolean
open: () => void
close: () => void
}