Merge pull request #309 from eb16/patch-1

Update index.d.ts
This commit is contained in:
Mikael Sand 2019-11-08 23:21:38 +02:00 committed by GitHub
commit 25a23142ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
index.d.ts vendored
View File

@ -10,10 +10,13 @@ export interface BlurViewProperties {
| "regular"
| "prominent"
// tvOS only
| "extraDark";
blurAmount?: number; // 0 - 100
style?: StyleProp<ViewStyle>;
viewRef?: number | null;
| "extraDark"
blurAmount?: number // 0 - 100
style?: StyleProp<ViewStyle>
viewRef?: number | null
blurRadius?: number
downsampleFactor?: number
overlayColor?: string
}
export class BlurView extends React.Component<BlurViewProperties, {}> {}