13 lines
181 B
Swift
13 lines
181 B
Swift
import ExpoModulesCore
|
|
|
|
struct ImageCacheConfig: Record {
|
|
@Field
|
|
var maxDiskSize: UInt?
|
|
|
|
@Field
|
|
var maxMemoryCost: UInt?
|
|
|
|
@Field
|
|
var maxMemoryCount: UInt?
|
|
}
|