We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d289e47 commit ceea516Copy full SHA for ceea516
src/collectionview/index.ios.ts
@@ -84,7 +84,11 @@ export enum SnapPosition {
84
END = 1 // = androidx.recyclerview.widget.LinearSmoothScroller.SNAP_TO_END
85
}
86
87
+
88
export class CollectionView extends CollectionViewBase {
89
+ //TODO: remove as it needs to be added after TS 5.7 change https://github.com/microsoft/TypeScript/pull/59860
90
+ [key: symbol]: (...args: any[]) => any | void;
91
92
_layout: UICollectionViewLayout;
93
_dataSource: CollectionViewDataSource;
94
_delegate: UICollectionViewDelegateImpl | UICollectionViewDelegateFixedSizeImpl;
0 commit comments