Add missing viewRef type definition (#237)

* Add missing viewRef type definition

* Missing semicolon
This commit is contained in:
Kamal Fariz Mahyuddin 2017-10-01 06:56:33 -07:00 committed by Alexey
parent bac52dfc89
commit 6e047dba3e
1 changed files with 1 additions and 0 deletions

1
index.d.ts vendored
View File

@ -7,6 +7,7 @@ export interface BlurViewProperties {
| 'extraDark' | 'regular' | 'prominent'; | 'extraDark' | 'regular' | 'prominent';
blurAmount?: number; // 0 - 100 blurAmount?: number; // 0 - 100
style?: ViewStyle; style?: ViewStyle;
viewRef?: number | null;
} }
export class BlurView extends React.Component<BlurViewProperties, {}> {} export class BlurView extends React.Component<BlurViewProperties, {}> {}