简体   繁体   中英

Typescript: Why destructuring an object doesn't hold type?

In the following, I would expect this to fail as I've stated afternoon should be of type number , but it doesn't fail.

My guess is I'm destructuring incorrectly as hovering over the word afternoon when it returns shows the type as any (in VS Code).

Alternatively, it could all be wrong, this is literally my first play with Typescript, not getting it, yet!

 const greetings = { morning: "Good morning.", evening: "Good evening.", afternoon: "Good afternoon.", }; interface AboutGreetingTypes { morning: string, evening: string, afternoon: number, }; const aboutGreeting = ({copy}): AboutGreetingTypes => { const d = new Date(); const timeInHours = d.getHours(); const { morning, evening, afternoon } = copy; if (timeInHours < 12) { return morning; } if (timeInHours > 18) { return evening; } if (timeInHours > 12) { return afternoon; } }; console.log(aboutGreeting({copy: greetings}));

Your function parameter type should be {copy: AboutGreetingTypes} not just AboutGreetingTypes

const aboutGreeting = ({copy}): AboutGreetingTypes => {

This line declares a function that accepts a single untyped object and returns an AboutGreetingTypes . Since the argument has no declared type, it is assumed to be any , which lets you do anything without without a type error.


What I think you want is a function that accepts an object that has a copy property that has value of an AboutGreetingTypes .

That would look like this:

const aboutGreeting = ({ copy }: { copy: AboutGreetingTypes }) => {

See playground which still has some errors, but those resolving those are answers to different questions.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM