Skip to content

Commit 9a94cec

Browse files
committed
* virtualize: refactor by eslint.
1 parent 4400157 commit 9a94cec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/virtualize/src/types/virtual-grid-props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface VirtualGridProps extends HElementProps {
99
initialScrollLeft?: number;
1010
initialScrollTop?: number;
1111
getItemCount?: (items: unknown) => number;
12-
getItemSize?: (items: unknown, index: number) => {width: number, height: number} | undefined;
12+
getItemSize?: (items: unknown, index: number) => {width: number; height: number} | undefined;
1313
getItem?: (items: unknown, index: number) => VirtualItemProps;
1414
renderItem?: (props: VirtualItemProps, items: unknown, index: number) => ComponentChildren;
1515
onScroll?: (scrollLeft: number, scrollTop: number) => void;

0 commit comments

Comments
 (0)