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

216
Vistas
Interface accepting any number of key value objects

I have the following interface / type as shown below:

export interface Bar {
  title?: string;
  [key: string]: string;
}

export type Foo = {
  name: string;
} & {
  [key: string]: Bar;
};

And when I try to declare a variable like so:

const someObject: Foo = {
  name: 'John',
  city: {
    a: 'something',
  },
};

It gives me the error:

Type '{ name: string; city: { a: string; }; }' is not assignable to type 'Foo '. Type '{ name: string; city: { a: string; }; }' is not assignable to type '{ [key: string]: Bar ; }'. Property 'title' is incompatible with index signature. Type 'string' is not assignable to type 'Bar'.


Question:

How to create an interface to satisfy an object like:

const someObject: Foo = {
  name: 'John',
  randomProperty1: { a: 'a' },
  randomProperty2: { b: 'b' },
  // any number of 'Bar'
};
about 4 years ago · Juan Pablo Isaza
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