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

135
Views
El argumento de tipo 'IResizeHandleSettingsDetail' no se puede asignar al parámetro de tipo 'IResizeHandleSettings'

¿Por qué estas líneas

 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]); }

lanzar el 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

aunque mi tipo se define con la firma de índice de la siguiente manera

 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 answers
Answer question

0

this.handleSettings[positionKey] hace referencia a un IResizeHandleSettingsDetail , por lo que debe configurar selectedHandleSettings en consecuencia:

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