GithubHelp home page GithubHelp logo

Comments (9)

gcanti avatar gcanti commented on April 27, 2024 2

As for v0.4 this issue seems fixed:

/* @flow */

var x: {a?: string;} = {}; // ok!

from flow.

jwebcat avatar jwebcat commented on April 27, 2024 2

I know this is an old issue but just in case someone else is curious about the comment of @romulof you have to type the object like so:

const config : Object = {
  baseURL: "apiUrl",
};

and no more error voila

from flow.

avikchaudhuri avatar avikchaudhuri commented on April 27, 2024

You can do b: null or b: undefined in the myThing literal to get by.

We may support optional property syntax in types, like so { a: ?any; b?: any } to let you omit properties, like you can omit arguments when parameters are declared optional. So that would typecheck your code as is.

from flow.

Raynos avatar Raynos commented on April 27, 2024

There is a difference between optional properties and nullable properties.

{ b?: String } means if the b property exist then enable that feature with the string argument.

{ b: String | null } means if the b property does not exist then default its value and use the feature.

One is for optional features, the other is for default values.

from flow.

gcanti avatar gcanti commented on April 27, 2024

+1

from flow.

samwgoldman avatar samwgoldman commented on April 27, 2024

Can this be closed?

from flow.

samwgoldman avatar samwgoldman commented on April 27, 2024

Closing. Please reopen if this is still an issue.

from flow.

romulof avatar romulof commented on April 27, 2024
const config = {
  baseURL: apiUrl,
};

if (accessToken) { // <-- property `headers`. Property not found in object literal
  config.headers = {
    Authorization: `Bearer ${accessToken}`,
  };
}

Do I have to manually add type hints to config to suppress this error message?

from flow.

matthewchung74 avatar matthewchung74 commented on April 27, 2024

I know this is old, but am running into the case where I am checking a property that does not exist in a flow type.

var x: {a?: string;} = {}; // ok!
if (x.b ==="something") { 
  // do something
}

I think it would be helpful if this also gave an error.

from flow.

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.