diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-26 15:55:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-26 15:55:27 +0000 |
commit | ce1b04b9250d25ec781c7e1ee046ea6358a81a83 (patch) | |
tree | 952bc4c73345de774157dd6f9269493dcdaa31be /src/view/com/util/Views.d.ts | |
parent | 56a88098d2ef8e271c7d63cb7d73cc220a787658 (diff) | |
download | voidsky-ce1b04b9250d25ec781c7e1ee046ea6358a81a83.tar.zst |
Fix `<List>` types (#6756)
* fix List and ScrollView types * add comment * rm omitting ref
Diffstat (limited to 'src/view/com/util/Views.d.ts')
-rw-r--r-- | src/view/com/util/Views.d.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/view/com/util/Views.d.ts b/src/view/com/util/Views.d.ts deleted file mode 100644 index 3f4905574..000000000 --- a/src/view/com/util/Views.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react' -import {ViewProps} from 'react-native' -export {FlatList as FlatList_INTERNAL, ScrollView} from 'react-native' -export function CenteredView({ - style, - sideBorders, - ...props -}: React.PropsWithChildren< - ViewProps & { - /** - * @platform web - */ - sideBorders?: boolean - /** - * @platform web - */ - topBorder?: boolean - } ->) |