diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 18:35:37 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 18:35:37 -0600 |
commit | bccc8a64d06310f91b607f2c0e175c26d42ff1fb (patch) | |
tree | 3463214497c071b1a9f5673c00a8e8694c2ddf0e /src/state/models/user-local-photos.ts | |
parent | fb334b1b3f6176965e08868530e39cb48d767b3f (diff) | |
download | voidsky-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.ts | 2 |
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[] = [] |