Astro Guideline: TypeScript — Type component props. Description: Define prop interfaces. Do: Props interface in frontmatter. Don't: Untyped props. Good Example: interface Props { title: string }. Bad Example: No props typing. Severity: Medium. Docs: .