Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

188
Views
Overload typescript property from npm package

Problem: Using a 3rd party npm package that has a d.ts file with definitions that are wrong

Looking for: a solution how to overload/introduce the correct types

enter image description here

What is seen on the snapshot is wrong , in fact the function supports objects. How do I change the interface?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

you can make the typescript compiler consider the new type with as keyword. for example, if you have an object say

obj= {prop1: 1, prop2: "str", otherProp: ["str"] }

with predefined type

objType = {
 prop1: number; 
 prop2: string;
 otherProp: string[];
}

you can overwrite this type like this

obj= {prop1: 1, prop2: "str"} as newType

type newType = {
  prop1: number; 
  prop2: number;
}

off course, this is not the good approach you should follow, because you lose the importance of using type check, but it is considered a escape hitch in your case

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!