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

149
Views
Differentiating custom Typescript Interfaces that have the same fields

I have a custom interface like this:

interface Pointer<T> {
  id: string
}

id is a pointer to other data structures, but the id field doesn't contain information about which data structure it is pointing to.

Ideally, I would be able to type the Pointer class as to which data structure the Pointer is pointing to, so that I don't accidentally confuse Pointers. For example:

function getBarPointer(): Pointer<Bar> {
  return { 'id': 'abc123' }
}

function getBazPointer(): Pointer<Baz> {
  return { 'id': 'xyz789' }
}

function useBarPointer(p: Pointer<Bar>): void {
  doSomethingWithP(p)
}

This would allow me to make sure I'm passing in the right Pointers at the type checking stage, while also letting me create functions that operate on specific kinds of pointers.

Is this possible? Or in general is there a way to tell typescript to differentiate types that are ostensibly the same?

Right now, as written, typescript just ignores the passed in type to Pointer.

about 4 years ago · Juan Pablo Isaza
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!