Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Made param as optional.
  • Loading branch information
[email protected] committed Nov 29, 2019
commit be2af4a99ba7089b7887110a9999f04fc14deee6
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ export interface ParallaxScrollViewProps {
outputScaleValue?: number;
style?: any;
parallaxHeaderHeight?: number;
resetScroll: bool,
resetScrollSuccessfull: func,
navBarOverlapHeight: number,
scrollViewBackgroundColor: string,
resetScroll?: bool;
resetScrollSuccessfull?: func;
navBarOverlapHeight?: number;
scrollViewBackgroundColor?: string;
}

export class RenderBackgroundParams {
Expand Down