Skip to content

Commit

Permalink
chore: fix implicit-any error in drag-styling.ts (#13500)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelbourn authored and vivian-hu-zz committed Oct 9, 2018
1 parent f3555f1 commit 9cd3132
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/cdk/drag-drop/drag-styling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
* found in the LICENSE file at https://angular.io/license
*/


// Helper type that ignores `readonly` properties. This is used in
// `extendStyles` to ignore the readonly properties on CSSStyleDeclaration
// since we won't be touching those anyway.
type Writeable<T> = { -readonly [P in keyof T]-?: T[P] };

/**
* Extended CSSStyleDeclaration that includes a couple of drag-related
* properties that aren't in the built-in TS typings.
Expand All @@ -19,10 +25,12 @@ interface DragCSSStyleDeclaration extends CSSStyleDeclaration {
* Shallow-extends a stylesheet object with another stylesheet object.
* @docs-private
*/
export function extendStyles(dest: CSSStyleDeclaration, source: Partial<DragCSSStyleDeclaration>) {
export function extendStyles(
dest: Writeable<CSSStyleDeclaration>,
source: Partial<DragCSSStyleDeclaration>) {
for (let key in source) {
if (source.hasOwnProperty(key)) {
dest[key!] = source[key];
dest[key as keyof CSSStyleDeclaration] = source[key as keyof CSSStyleDeclaration];
}
}

Expand Down

0 comments on commit 9cd3132

Please sign in to comment.