Code Monkey home page Code Monkey logo

Comments (11)

MartinJohns avatar MartinJohns commented on April 27, 2024 1

The inferred type of someCondition is string | null:

Are you absolutely sure? Because then it should work. That it does work when you use a type assertion indicates the type is not as you think it is.

from typescript.

MartinJohns avatar MartinJohns commented on April 27, 2024

For null and undefined it's intentional: #57501. I suspect for the other types as well. Spreading them makes no sense and indicates a logic error.

from typescript.

fatcerberus avatar fatcerberus commented on April 27, 2024

What JavaScript allows at runtime and what TS allows at compile time are intentionally very different things.

Since these are no-ops, there's no reason to ever write e.g. { ...true } literally instead of just {}. And if you have something like boolean | Foo where it's only sometimes an object that you're spreading in, then that's likely to indicate a bug in your code, so TS errors accordingly.

from typescript.

nmain avatar nmain commented on April 27, 2024

Related #38469

from typescript.

geryogam avatar geryogam commented on April 27, 2024

Thanks for the quick feedback.

The use case is this (we have a lot of instances of it in the codebase at my current company):

const someObject = {
  someProperty,
  ...(someCondition && { someConditionalProperty })
};

It is perfectly valid in JavaScript but in TypeScript we have to write this instead, which is a little awkward:

const someObject = {
  someProperty,
  ...(someCondition ? { someConditionalProperty } : {})
};

from typescript.

RyanCavanaugh avatar RyanCavanaugh commented on April 27, 2024

This checks without error:

declare const someProperty: { x: string };
declare const someCondition: boolean;
declare const someConditionalProperty: { y: string };
const someObject = {
  someProperty,
  ...(someCondition && { someConditionalProperty })
};

What are your actual types?

from typescript.

geryogam avatar geryogam commented on April 27, 2024

The inferred type of someCondition is string | null:

import { useSelector } from 'react-redux';

const someCondition = useSelector(state => state.someCondition);

What is weird is that the spread does type check without error if I use a type assertion:

import { useSelector } from 'react-redux';

const someCondition = useSelector(state => state.someCondition) as string | null;

from typescript.

RyanCavanaugh avatar RyanCavanaugh commented on April 27, 2024

You seem to be reducing these examples so far that they stop working or making sense. I'd really like an actual example of this problem occurring to make sure nothing weird is happening.

from typescript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.