Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
[@types] Change: *Properties was rename to *Props so they are depreca…
Browse files Browse the repository at this point in the history
  • Loading branch information
guhungry authored and kevinvangelder committed Oct 31, 2018
1 parent 53f046d commit 3f4f9c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions boilerplate/src/views/shared/button/button.props.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ViewStyle, TextStyle, TouchableOpacityProperties } from "react-native"
import { ViewStyle, TextStyle, TouchableOpacityProps } from "react-native"
import { ButtonPresetNames } from "./button.presets"

export interface ButtonProps extends TouchableOpacityProperties {
export interface ButtonProps extends TouchableOpacityProps {
/**
* Text which is looked up via i18n.
*/
Expand Down
4 changes: 2 additions & 2 deletions boilerplate/src/views/shared/text-field/text-field.props.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { TextInputProperties, TextStyle, ViewStyle } from "react-native"
import { TextInputProps, TextStyle, ViewStyle } from "react-native"

export interface TextFieldProps extends TextInputProperties {
export interface TextFieldProps extends TextInputProps {
/**
* The placeholder i18n key.
*/
Expand Down
2 changes: 1 addition & 1 deletion boilerplate/src/views/shared/text/text.props.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TextStyle, TextProperties } from "react-native"
import { TextStyle, TextProps as TextProperties } from "react-native"
import { TextPresets } from "./text.presets"

export interface TextProps extends TextProperties {
Expand Down

0 comments on commit 3f4f9c4

Please sign in to comment.