This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Expo2DContext from 'expo-2d-context' | |
| import { Asset } from 'expo-asset' | |
| import { GLView, GLViewProps } from 'expo-gl' | |
| import React from 'react' | |
| export type PixelData = { | |
| asset: Asset | |
| data: Uint8ClampedArray | |
| height: number | |
| width: number |