Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
119
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 18 lines 548 B view raw
1import {type OpenCropperOptions} from '@bsky.app/expo-image-crop-tool' 2 3import {type PickerImage} from './picker.shared' 4import {type CameraOpts} from './types' 5 6export {openPicker, openUnifiedPicker} from './picker.shared' 7 8export async function openCamera(_opts: CameraOpts): Promise<PickerImage> { 9 throw new Error('openCamera is not supported on web') 10} 11 12export async function openCropper( 13 _opts: OpenCropperOptions, 14): Promise<PickerImage> { 15 throw new Error( 16 'openCropper is not supported on web. Use EditImageDialog instead.', 17 ) 18}