Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

89
Vistas
Typescript custom type

If I have an interface in typescript like so

interface MyInterface {
  id: number;
  image: string;
  text: "one thing" | "another" | "anotherthing" | "anotherthing" 
}

How can I factor out my type for text with the pipes so I can use it multiple times as a type in my program? It seems like it should be simple but I'm not sure what the syntax is

For clarity I would like to be able to use it like

factoredOutType = "one thing" | "another" | "anotherthing" | "anotherthing" 

interface MyInterface1 {
  id: number;
  image: string;
  text: factoredOutType
}

interface MyInterface2 {
  name: factoredOutType
}

etc... I can't seem to find the syntax to this question so help is appreciated.

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

I think you just need the type keyword:

type factoredOutType = "one thing" | "another" | "anotherthing" | "anotherthing"

Not near a compiler now so can't really check but I think that works

about 4 years ago · Juan Pablo Isaza Denunciar

0

you can format string literal types using template literal if your types are related/dynamic. e.g.

type stringTypes =  `${'hello' | 'world'}_id`;
const a: stringTypes = 'hello_id'; 
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda