24
24
import { MDCFoundation } from '@material/base/foundation' ;
25
25
import { MDCMenuSurfaceAdapter } from './adapter' ;
26
26
import { Corner , CornerBit , cssClasses , numbers , strings } from './constants' ;
27
- import { AnyDuringTs36Migration , MDCMenuDimensions , MDCMenuDistance , MDCMenuPoint } from './types' ;
27
+ import { MDCMenuDimensions , MDCMenuDistance , MDCMenuPoint } from './types' ;
28
28
29
29
interface AutoLayoutMeasurements {
30
30
anchorSize : MDCMenuDimensions ;
@@ -435,11 +435,11 @@ export class MDCMenuSurfaceFoundation extends MDCFoundation<MDCMenuSurfaceAdapte
435
435
const props = Object . keys ( position ) as Array < keyof Partial < MDCMenuDistance > > ;
436
436
437
437
for ( const prop of props ) {
438
- let value = ( position as AnyDuringTs36Migration ) [ prop ] || 0 ;
438
+ let value = position [ prop ] || 0 ;
439
439
440
440
// Hoisted surfaces need to have the anchor elements location on the page added to the
441
441
// position properties for proper alignment on the body.
442
- value += ( viewportDistance as AnyDuringTs36Migration ) [ prop ] ;
442
+ value += viewportDistance [ prop ] ;
443
443
444
444
// Surfaces that are absolutely positioned need to have additional calculations for scroll
445
445
// and bottom positioning.
@@ -455,7 +455,7 @@ export class MDCMenuSurfaceFoundation extends MDCFoundation<MDCMenuSurfaceAdapte
455
455
}
456
456
}
457
457
458
- ( position as AnyDuringTs36Migration ) [ prop ] = value ;
458
+ position [ prop ] = value ;
459
459
}
460
460
}
461
461
0 commit comments