Skip to content

Commit eabd116

Browse files
committed
npm publish
0 parents  commit eabd116

33 files changed

+9999
-0
lines changed

.npmignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
demo/
2+
.idea/
3+
support/
4+
*.tar
5+
*.tgz
6+
.npmignore
7+
*.map
8+
*.ts
9+
tsconfig.json
10+
scripts
11+
.DS_Store
12+
*.aar
13+
node_modules
14+
*.esm.json
15+
!extractTGZ.js
16+
*.js.map
17+
*.log
18+
19+
# Editor directories and files
20+
.idea
21+
.vscode

README.md

Lines changed: 319 additions & 0 deletions
Large diffs are not rendered by default.

Yoonit.Camera.android.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { CameraBase } from './Yoonit.Camera.common';
2+
export declare class YoonitCamera extends CameraBase {
3+
nativeView: ai.cyberlabs.yoonit.camera.CameraView;
4+
createNativeView(): Object;
5+
initNativeView(): void;
6+
disposeNativeView(): void;
7+
requestPermission(explanation?: string): Promise<boolean>;
8+
hasPermission(): boolean;
9+
setImageCaptureColorEncoding(colorEncoding: string): void;
10+
setFaceContours(enable: boolean): void;
11+
setFaceContoursColor(color: any): void;
12+
setComputerVision(enable: boolean): void;
13+
setComputerVisionLoadModels(modelPaths: Array<String>): void;
14+
computerVisionClearModels(): void;
15+
}

Yoonit.Camera.android.js

Lines changed: 248 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Yoonit.Camera.android.js.map

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

0 commit comments

Comments
 (0)