We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5feef59 commit 6b456acCopy full SHA for 6b456ac
index.d.ts
@@ -0,0 +1,23 @@
1
+export default interface ParallaxScrollView {
2
+ backgroundScrollSpeed?: number;
3
+ backgroundColor?: string;
4
+ contentBackgroundColor?: string;
5
+ fadeOutForeground?: boolean;
6
+ onChangeHeaderVisibility?: (value: boolean) => void;
7
+ renderScrollComponent?: (props: any) => any;
8
+ renderBackground(params: RenderBackgroundParams);
9
+ renderForeground: () => any;
10
+ stickyHeaderHeight?: number;
11
+ contentContainerStyle?: any;
12
+ outputScaleValue?: number;
13
+}
14
+
15
+export class RenderBackgroundParams {
16
+ fadeOutForeground: any;
17
+ backgroundScrollSpeed: number;
18
+ backgroundColor: string;
19
+ parallaxHeaderHeight: number;
20
+ stickyHeaderHeight: number;
21
+ renderBackground: () => void;
22
+ outputScaleValue: number;
23
0 commit comments