From c8da363e335916786d2f5c5e4ae7eef56a266553 Mon Sep 17 00:00:00 2001 From: shiyueeee Date: Wed, 10 Aug 2022 14:55:49 +0800 Subject: [PATCH] Modify api from upper camel case to lower camel case Signed-off-by: shiyueeee Change-Id: I46bf416d97f2f600531d7cd84adc3999f01f5513 --- api/@ohos.graphics.colorSpaceManager.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/@ohos.graphics.colorSpaceManager.d.ts b/api/@ohos.graphics.colorSpaceManager.d.ts index 70c9778c2f..db7b533a3f 100644 --- a/api/@ohos.graphics.colorSpaceManager.d.ts +++ b/api/@ohos.graphics.colorSpaceManager.d.ts @@ -144,19 +144,19 @@ import { AsyncCallback } from './basic'; * Get color space type. * @since 9 */ - GetColorSpaceName(): ColorSpace; + getColorSpaceName(): ColorSpace; /** * Get white point(x, y) of color space. * @since 9 */ - GetWhitePoint(): Array; + getWhitePoint(): Array; /** * Get gamma value of color space. * @since 9 */ - GetGamma(): number; + getGamma(): number; } /** -- Gitee