Skip to content

Commit 3ed6abd

Browse files
refactor: change controller visibility to private in OCRModules
1 parent 6ce2f92 commit 3ed6abd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/react-native-executorch/src/modules/computer_vision/OCRModule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { OCRDetection, OCRLanguage } from '../../types/ocr';
77
* @category Typescript API
88
*/
99
export class OCRModule {
10-
public controller: OCRController;
10+
private controller: OCRController;
1111

1212
constructor() {
1313
this.controller = new OCRController();

packages/react-native-executorch/src/modules/computer_vision/VerticalOCRModule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ResourceSource } from '../../types/common';
88
* @category Typescript API
99
*/
1010
export class VerticalOCRModule {
11-
public controller: VerticalOCRController;
11+
private controller: VerticalOCRController;
1212

1313
constructor() {
1414
this.controller = new VerticalOCRController();

0 commit comments

Comments
 (0)