← All tips

TypeScript: `readonly` props reduce accidental mutation

typescriptstyle

Make intent explicit in APIs.

type Props = Readonly<{ id: string; tags: string[] }>