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

139
Vistas
Argument of type 'IResizeHandleSettingsDetail' is not assignable to parameter of type 'IResizeHandleSettings'

Why do these lines

handleSettings: IResizeHandleSettings = {
  right: {
    position: 'right',
    axis: 'x',
    dimension: 'width',
    eventProperty: 'clientX',
    translate: false,
    deltaMultiplier: 1,
  },
  left: {
    position: 'left',
    axis: 'x',
    dimension: 'width',
    eventProperty: 'clientX',
    translate: true,
    deltaMultiplier: -1,
  },
  bottom: {
    position: 'bottom',
    axis: 'y',
    dimension: 'height',
    eventProperty: 'clientY',
    translate: false,
    deltaMultiplier: 1,
  },
  top: {
    position: 'top',
    axis: 'y',
    dimension: 'height',
    eventProperty: 'clientY',
    translate: true,
    deltaMultiplier: -1,
  },
};

selectedHandleSettings: {
  x: string | undefined | null;
  y: string | undefined | null;
  settings: IResizeHandleSettings[];
};

method(positionKey: string) {
  this.selectedHandleSettings.settings.push(this.handleSettings[positionKey]);
}

throw the error

S2345: Argument of type 'IResizeHandleSettingsDetail' is not assignable to parameter of type 'IResizeHandleSettings'.   Type 'IResizeHandleSettingsDetail' is missing the following properties from type 'IResizeHandleSettings': left, right, top, bottom

even though my type is defined with the index signature as follows

export interface IResizeHandleSettings {
  [key: string]: IResizeHandleSettingsDetail;
  left: IResizeHandleSettingsDetail;
  right: IResizeHandleSettingsDetail;
  top: IResizeHandleSettingsDetail;
  bottom: IResizeHandleSettingsDetail;
}

export interface IResizeHandleSettingsDetail {
  position: string;
  axis: string;
  dimension: string;
  eventProperty: string;
  translate: boolean;
  deltaMultiplier: number;
}
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

this.handleSettings[positionKey] refers to a IResizeHandleSettingsDetail, so you need to set up selectedHandleSettings accordingly:

selectedHandleSettings: {
  x: string | undefined | null;
  y: string | undefined | null;
  settings: IResizeHandleSettingsDetail[]; // <-- ...Detail!
};
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