react-native-blur/index.d.ts
eb16 e5fa22fb5c
Update index.d.ts
Added missing properties in types
2019-03-27 12:58:09 -03:00

27 lines
669 B
TypeScript

import * as React from "react";
import { StyleProp, ViewStyle } from "react-native";
export interface BlurViewProperties {
blurType:
| "xlight"
| "light"
| "dark"
// tvOS and iOS 10+ only
| "regular"
| "prominent"
// tvOS only
| "extraDark"
blurAmount?: number // 0 - 100
style?: StyleProp<ViewStyle>
viewRef?: number | null
blurRadius?: number
downsampleFactor?: number
overlayColor?: string
}
export class BlurView extends React.Component<BlurViewProperties, {}> {}
export interface VibrancyViewProperties extends BlurViewProperties {}
export class VibrancyView extends React.Component<VibrancyViewProperties, {}> {}