Skip to content

Instantly share code, notes, and snippets.

View kristfal's full-sized avatar

Kristian Fallrø kristfal

View GitHub Profile
@lelandrichardson
lelandrichardson / react-native.js
Last active July 21, 2022 17:56
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 } |