about summary refs log tree commit diff
path: root/src/state/models/user-local-photos.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-17 18:35:37 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-17 18:35:37 -0600
commitbccc8a64d06310f91b607f2c0e175c26d42ff1fb (patch)
tree3463214497c071b1a9f5673c00a8e8694c2ddf0e /src/state/models/user-local-photos.ts
parentfb334b1b3f6176965e08868530e39cb48d767b3f (diff)
downloadvoidsky-bccc8a64d06310f91b607f2c0e175c26d42ff1fb.tar.zst
Give a more sensible default crop in the post image picker (related #39)
Diffstat (limited to 'src/state/models/user-local-photos.ts')
-rw-r--r--src/state/models/user-local-photos.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/models/user-local-photos.ts b/src/state/models/user-local-photos.ts
index 9a1455039..08b2b3901 100644
--- a/src/state/models/user-local-photos.ts
+++ b/src/state/models/user-local-photos.ts
@@ -3,6 +3,8 @@ import {makeAutoObservable, runInAction} from 'mobx'
 import {CameraRoll} from '@react-native-camera-roll/camera-roll'
 import {RootStoreModel} from './root-store'
 
+export type {PhotoIdentifier} from './../../../node_modules/@react-native-camera-roll/camera-roll/src/CameraRoll'
+
 export class UserLocalPhotosModel {
   // state
   photos: PhotoIdentifier[] = []