From a427d75e4b0bbd5c21eabf86226784ad22e93c1b Mon Sep 17 00:00:00 2001 From: imbrook Date: Wed, 24 Feb 2021 15:39:42 +0900 Subject: [PATCH] add textContainerStyle of type --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 7bfe404..f69f8c3 100644 --- a/index.d.ts +++ b/index.d.ts @@ -4,7 +4,7 @@ declare module "react-native-switch-selector" { ImageStyle, RegisteredStyle, TextStyle, - ViewStyle + ViewStyle, } from "react-native"; export interface ISwitchSelectorOption { @@ -36,6 +36,7 @@ declare module "react-native-switch-selector" { textStyle?: TextStyle | RegisteredStyle; selectedTextStyle?: TextStyle | RegisteredStyle; textCStyle?: TextStyle | RegisteredStyle; + textContainerStyle?: TextStyle | RegisteredStyle; selectedTextContainerStyle?: TextStyle | RegisteredStyle; imageStyle?: ImageStyle | RegisteredStyle; style?: ViewStyle | RegisteredStyle;