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

261
Views
Typescript: How to accept 2 different types

I have a method getRoute that takes a video. The video is either of LiveVideo type or RecordedVideo type. My problem is that getLiveID field is only in LiveVideo so I am getting the editor issue property getLiveID does not exist on type RecordedVideo. What is the way around this? I want to use 1 method to handle both and handle the conditional logic within.

getRoute(video: LiveVideo | RecordedVideo) {
   if (video.getLiveID) {

     ///
   } else {
      ///
   }
}
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

You can use instanceof:

getRoute(video: LiveVideo | RecordedVideo) {
  if (video instanceof LiveVideo) {
    // "video" is of type LiveVideo here...
  } else {
    // ...
  }
}
about 4 years ago · Juan Pablo Isaza Report

0

You can check which type you have using in. For example:

getRoute(video: LiveVideo | RecordedVideo) {
   if ("getLiveId" in video) {
     // treat as LiveVideo
   } else {
     // as RecordedVideo
   }
}
about 4 years ago · Juan Pablo Isaza Report

0

type LiveVideo = {
    getLiveID: Function,
    id: string
}

type RecordedVideo = {
    id: string
}

function getRoute(video: LiveVideo | RecordedVideo) {
    if ((video as LiveVideo)?.getLiveID) {

        ///
    } else {
        ///
    }
}
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!