From c350f6bb6362ca6ddf23200c6d94816a9d44e714 Mon Sep 17 00:00:00 2001 From: jiangminyang Date: Fri, 25 Mar 2022 16:12:59 +0800 Subject: [PATCH] fixed with zh case. Signed-off-by: jiangminyang --- .../reference/apis/js-apis-camera.md | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/en/application-dev/reference/apis/js-apis-camera.md b/en/application-dev/reference/apis/js-apis-camera.md index 3d41d138f0..518efd687f 100644 --- a/en/application-dev/reference/apis/js-apis-camera.md +++ b/en/application-dev/reference/apis/js-apis-camera.md @@ -262,11 +262,11 @@ Creates a **CameraInput** instance with the specified camera position and camera **Parameters** -| Name | Type | Mandatory | Description | -|----------------|----------------------------|-----------|---------------------------------------------------| -| cameraPosition | CameraPosition | Yes | Camera position | -| cameraType | CameraType | Yes | Camera type | -| callback | AsyncCallback | Yes | Callback used to return the CameraInput instance | +| Name | Type | Mandatory | Description | +|----------|-----------------------------|-----------|---------------------------------------------------| +| position | CameraPosition | Yes | Camera position | +| type | CameraType | Yes | Camera type | +| callback | AsyncCallback | Yes | Callback used to return the CameraInput instance | **Example** @@ -292,10 +292,10 @@ Creates a **CameraInput** instance with the specified camera position and camera **Parameters** -| Name | Type | Mandatory | Description | -|----------------|----------------------------|-----------|----------------------------------------| -| cameraPosition | CameraPosition | Yes | Camera position | -| cameraType | CameraType | Yes | Camera type | +| Name | Type | Mandatory | Description | +|----------|----------------------------|-----------|----------------------------------------| +| position | CameraPosition | Yes | Camera position | +| type | CameraType | Yes | Camera type | **Return values** @@ -325,7 +325,7 @@ Listens for camera status changes. This method uses a callback to get camera sta | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :--------------------------------------------------- | -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'cameraStatus', which is the camera status event. | | callback | Callback | Yes | Callback used to get the camera status change. | **Example** @@ -1091,7 +1091,7 @@ Listens for **CameraInput** errors. This method uses a callback to get errors. | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :-----------------------------------------------| -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'error',which is the CameraInputError event | | callback | Callback | Yes | Callback used to get the camera input errors. | **Example** @@ -1949,7 +1949,7 @@ Listens for **CaptureSession** errors. This method uses a callback to get errors | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :-----------------------------------------------| -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'error',which is the CaptureSessionError event | | callback | Callback | Yes | Callback used to get the capture session errors. | **Example** @@ -2140,7 +2140,7 @@ Listens for **PreviewOutput** errors. This method uses a callback to get errors. | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :-----------------------------------------------| -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'error',which is the PreviewOutputError event | | callback | Callback | Yes | Callback used to get the preview output errors. | **Example** @@ -2503,7 +2503,7 @@ Listens for **PhotoOutput** errors. This method uses a callback to get errors. | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :-----------------------------------------------| -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'error',which is the PhotoOutputError event | | callback | Callback | Yes | Callback used to get the photo output errors. | **Example** @@ -2561,9 +2561,9 @@ Creates a **VideoOutput** instance. This method uses a promise to return the Vid **Return values** -| Type | Description | -|-------------------------|-------------------------------------------------| -| Promise | Promise used to return the VideoOutput instance | +| Type | Description | +|---------------------------------------|-------------------------------------------------| +| Promise<[VideoOutput](#videooutput)\> | Promise used to return the VideoOutput instance | **Example** @@ -2786,7 +2786,7 @@ Listens for **VideoOutput** errors. This method uses a callback to get errors. | Name | Type | Mandatory | Description | | :------- | :--------------------- | :-------- | :-----------------------------------------------| -| type | string | Yes | Name of the event to listen for. | +| type | string | Yes | Name of the event to listen for, it should be 'error',which is the VideoOutputError event | | callback | Callback | Yes | Callback used to get the video output errors. | **Example** -- GitLab