mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
chore(virtual-scroll): replace implicit any's
This commit is contained in:
@ -620,10 +620,10 @@ export interface VirtualHtmlElement {
|
|||||||
offsetHeight: number;
|
offsetHeight: number;
|
||||||
style: any;
|
style: any;
|
||||||
classList: {
|
classList: {
|
||||||
add: {(name: string)};
|
add: {(name: string): void};
|
||||||
remove: {(name: string)};
|
remove: {(name: string): void};
|
||||||
};
|
};
|
||||||
setAttribute: {(name: string, value: any)};
|
setAttribute: {(name: string, value: any): void};
|
||||||
parentElement: VirtualHtmlElement;
|
parentElement: VirtualHtmlElement;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user