--- import type { HookType } from '@astro-reactive/common'; export interface Props { hook?: HookType; displayErrorMessages?: boolean; } const { hook = 'all', displayErrorMessages = false } = Astro.props; ---