From 73308af061af5e17ac7d4a73fa027a2f303c70dd Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Fri, 23 Jul 2021 11:02:26 +0300 Subject: Update graph data when Emacs node changes + minor improvements --- app_expo/components/switch/switch.props.ts | 39 ------------------------------ 1 file changed, 39 deletions(-) delete mode 100644 app_expo/components/switch/switch.props.ts (limited to 'app_expo/components/switch/switch.props.ts') diff --git a/app_expo/components/switch/switch.props.ts b/app_expo/components/switch/switch.props.ts deleted file mode 100644 index 2549a95..0000000 --- a/app_expo/components/switch/switch.props.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { StyleProp, ViewStyle } from 'react-native' - -export interface SwitchProps { - /** - * On or off. - */ - value?: boolean - /** - * Fires when the on/off switch triggers. - * - * @param newValue The new value we're switching to. - */ - onToggle?: (newValue: boolean) => void - - /** - * A style override to apply to the container. Useful for margins and paddings. - */ - style?: StyleProp - - /** - * Additional track styling when on. - */ - trackOnStyle?: StyleProp - - /** - * Additional track styling when off. - */ - trackOffStyle?: StyleProp - - /** - * Additional thumb styling when on. - */ - thumbOnStyle?: StyleProp - - /** - * Additional thumb styling when off. - */ - thumbOffStyle?: StyleProp -} -- cgit v1.2.3