© 2026 Hedgehog Software, LLC
const Example = (guid : string) => { ... }
Type { guid: string; } is not assignable to type string
const Example = ({guid : string}) => { ... }
const Example = (input : {guid : string}) => { ... }