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

100
Views
Is this typescript type possible?

In an array there should be a list of functions. These functions should act like a pipeline.

For example:

const pipeline: Pipeline<number, string> = [
    (val: number) => {
        return { id: val };
    },
    (val: { id: number }) => {
        return val.id.toString();
    },
];

The pipeline should be typesafe, every function should infer its parameter's type automatically (by using the return type of the function before).

Following is my own draft, but as you see, the typesafety of my type is limited to the start and end type.

type Pipeline<StartType, EndType> =
    | [
          (val: StartType) => unknown,
          ...Array<(val: unknown) => unknown>,
          (val: unknown) => EndType
      ]
    | [(val: StartType) => EndType];
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!