11 lines
171 B
Swift
11 lines
171 B
Swift
import ExpoModulesCore
|
|
|
|
|
|
struct TextSegment: Decodable {
|
|
let index: Int
|
|
let text: String
|
|
let style: TextStyle?
|
|
let handlePress: Bool
|
|
let handleLongPress: Bool
|
|
}
|