2018-10-24 18:47:25 -03:00
|
|
|
declare module 'react-native-web' {
|
|
|
|
|
export * from 'react-native'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace JSX {
|
|
|
|
|
import * as ReactNative from 'react-native'
|
2020-02-02 17:30:47 -03:00
|
|
|
|
2018-10-24 18:47:25 -03:00
|
|
|
interface IntrinsicAttributes extends React.Attributes {
|
|
|
|
|
accessibilityRole?:
|
|
|
|
|
| ReactNative.AccessibilityRole
|
|
|
|
|
| 'article' // article
|
|
|
|
|
| 'banner' // header
|
|
|
|
|
| 'button' // button
|
|
|
|
|
| 'complementary' // aside
|
|
|
|
|
| 'contentinfo' // footer
|
|
|
|
|
| 'form' // form
|
|
|
|
|
| 'heading' // h1, h2, h3, ...
|
|
|
|
|
| 'label' // label
|
|
|
|
|
| 'link' // a
|
|
|
|
|
| 'list' // ul
|
|
|
|
|
| 'listitem' // li
|
|
|
|
|
| 'main' // main
|
|
|
|
|
| 'navigation' // nav
|
|
|
|
|
| 'region' // section
|
2019-09-06 01:51:02 -03:00
|
|
|
accessible?: boolean
|
2019-03-23 11:05:11 -03:00
|
|
|
className?: string
|
2019-02-21 03:38:14 -03:00
|
|
|
tabIndex?: number
|
2018-10-24 18:47:25 -03:00
|
|
|
}
|
|
|
|
|
}
|