Skip to content

Instantly share code, notes, and snippets.

View zarcode's full-sized avatar

Zarko Dencic zarcode

View GitHub Profile
@zarcode
zarcode / react-native.js
Created April 20, 2018 20:24 — forked from lelandrichardson/react-native.js
React Native flow types
declare var __DEV__: boolean;
declare module 'react-native' {
declare type Color = string | number;
declare type Transform =
{ perspective: number } |
{ scale: number } |
{ scaleX: number } |