SIGN IN SIGN UP
devhubapp / devhub UNCLAIMED

TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them

0 0 2 TypeScript
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
className?: string
tabIndex?: number
2018-10-24 18:47:25 -03:00
}
}