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;
|
||||
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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user