Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit efb6cdb

Browse files
cleanup
1 parent 4b8116f commit efb6cdb

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/mlkit/textrecognition/index.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ export interface MLKitRecognizeTextResultBounds {
1212
}
1313

1414
export interface MLKitRecognizeTextResultElement {
15-
text: string;
16-
bounds: MLKitRecognizeTextResultBounds;
15+
text: string;
16+
bounds: MLKitRecognizeTextResultBounds;
1717
}
1818

1919
export 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

2626
export 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

3333
export interface MLKitRecognizeTextResult extends MLKitResult {
3434
text?: string;
35-
blocks?: Array<MLKitRecognizeTextResultBlock>;
35+
blocks?: Array<MLKitRecognizeTextResultBlock>;
3636
ios?: any;
3737
android?: any;
3838
}

src/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "es5",
44
"module": "commonjs",
5-
"removeComments": false,
5+
"removeComments": true,
66
"declaration": true,
77
"noLib": false,
88
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)