Git Product home page Git Product logo

Comments (7)

jcalz avatar jcalz commented on May 3, 2024 1

I'd consider this a duplicate of #17867. There is no "very good solution" here right now, just various workarounds.

from typescript.

ruochenjia avatar ruochenjia commented on May 3, 2024 1

@jcalz It should not be hard to add a fix, since the methods inherited from the Object interface can already be addressed without any errors:

interface K {
	[k: string]: string;
}
let d : K = {};
d.toString(); // works fine, no type errors

from typescript.

MartinJohns avatar MartinJohns commented on May 3, 2024

Exclude<> is used to remove types from a union type. string is not a union type, so you can't remove the literal type "get" from it. So Exclude<string, "get"> is the same as string. See #47178 and many more.

The type you're trying to create can't be represented in TypeScript. This would require negated types: #4196

from typescript.

ruochenjia avatar ruochenjia commented on May 3, 2024

If Exclude is not valid, how can I declare methods within an interface without making the value of the index accessor any?

from typescript.

MartinJohns avatar MartinJohns commented on May 3, 2024

The closest you can get is using an intersection type:
type RawHeaders = { [k: string]: string } & { get(key: string): string[] }

But be aware that this is an unsound type. It's still possible to access the index signature with a key "get" and assign a string to it.

from typescript.

ruochenjia avatar ruochenjia commented on May 3, 2024

This is not a very good solution as the type is not extendable by another interface, and is also not implementable by a class, which is needed in my project.

from typescript.

jcalz avatar jcalz commented on May 3, 2024

Still belongs in #17867

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.