This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,27 @@ export interface MLKitRecognizeTextResultBounds {
1212}
1313
1414export interface MLKitRecognizeTextResultElement {
15- text : string ;
16- bounds : MLKitRecognizeTextResultBounds ;
15+ text : string ;
16+ bounds : MLKitRecognizeTextResultBounds ;
1717}
1818
1919export interface MLKitRecognizeTextResultLine {
20- text : string ;
21- confidence : number ;
22- bounds : MLKitRecognizeTextResultBounds ;
23- elements : Array < MLKitRecognizeTextResultElement > ;
20+ text : string ;
21+ confidence : number ;
22+ bounds : MLKitRecognizeTextResultBounds ;
23+ elements : Array < MLKitRecognizeTextResultElement > ;
2424}
2525
2626export interface MLKitRecognizeTextResultBlock {
27- text : string ;
28- confidence : number ;
29- bounds : MLKitRecognizeTextResultBounds ;
30- lines : Array < MLKitRecognizeTextResultLine > ;
27+ text : string ;
28+ confidence : number ;
29+ bounds : MLKitRecognizeTextResultBounds ;
30+ lines : Array < MLKitRecognizeTextResultLine > ;
3131}
3232
3333export interface MLKitRecognizeTextResult extends MLKitResult {
3434 text ?: string ;
35- blocks ?: Array < MLKitRecognizeTextResultBlock > ;
35+ blocks ?: Array < MLKitRecognizeTextResultBlock > ;
3636 ios ?: any ;
3737 android ?: any ;
3838}
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "target" : " es5" ,
44 "module" : " commonjs" ,
5- "removeComments" : false ,
5+ "removeComments" : true ,
66 "declaration" : true ,
77 "noLib" : false ,
88 "emitDecoratorMetadata" : true ,
You can’t perform that action at this time.
0 commit comments