1 import ABI49_0_0ExpoModulesCore
2 
3 internal struct DocumentPickerResponse: Record {
4   @Field var assets: [DocumentInfo]? = nil
5   @Field var canceled: Bool = false
6 }
7 
8 internal struct DocumentInfo: Record {
9   @Field var uri: String = ""
10   @Field var name: String? = nil
11   @Field var size: Int = 0
12   @Field var mimeType: String? = nil
13 }
14