chore(virtual-scroll): replace implicit any's

This commit is contained in:
Job
2016-12-07 17:02:08 +01:00
committed by Adam Bradley
parent e0d876e9f0
commit ca489e8200

View File

@ -620,10 +620,10 @@ export interface VirtualHtmlElement {
offsetHeight: number;
style: any;
classList: {
add: {(name: string)};
remove: {(name: string)};
add: {(name: string): void};
remove: {(name: string): void};
};
setAttribute: {(name: string, value: any)};
setAttribute: {(name: string, value: any): void};
parentElement: VirtualHtmlElement;
}