about summary refs log tree commit diff
path: root/src/view/com/util/Views.d.ts
blob: 3f4905574bce1f167e092df3303cead23bb45b35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
  }
>)