mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-27 17:31:12 +00:00
6b75d3632f
Description: Modify d.ts Sig:SIG_ApplicationFramework Feature or Bugfix:Bugfix Binary Source:No Signed-off-by: jsjzju <jinsenjun@huawei.com> Change-Id: I4201c977d367bb4affd6558a5f89ddf532941def
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License"),
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* The definition of ConfigurationConstant.
|
|
*
|
|
* @since 8
|
|
* @syscap SystemCapability.Ability.AbilityBase
|
|
* @permission N/A
|
|
*/
|
|
declare namespace ConfigurationConstant {
|
|
/**
|
|
* @name ColorMode
|
|
* @since 8
|
|
* @syscap SystemCapability.Ability.AbilityBase
|
|
* @permission N/A
|
|
*/
|
|
export enum ColorMode {
|
|
COLOR_MODE_NOT_SET = -1,
|
|
COLOR_MODE_DARK = 0,
|
|
COLOR_MODE_LIGHT = 1,
|
|
}
|
|
|
|
/**
|
|
* @name Direction
|
|
* @since 9
|
|
* @syscap SystemCapability.Ability.AbilityBase
|
|
* @permission N/A
|
|
*/
|
|
export enum Direction {
|
|
DIRECTION_NOT_SET = -1,
|
|
DIRECTION_VERTICAL = 0,
|
|
DIRECTION_HORIZONTAL = 1,
|
|
}
|
|
|
|
/**
|
|
* @name ScreenDensity
|
|
* @since 9
|
|
* @syscap SystemCapability.Ability.AbilityBase
|
|
* @permission N/A
|
|
*/
|
|
export enum ScreenDensity {
|
|
SCREEN_DENSITY_NOT_SET = 0,
|
|
SCREEN_DENSITY_SDPI = 120,
|
|
SCREEN_DENSITY_MDPI = 160,
|
|
SCREEN_DENSITY_LDPI = 240,
|
|
SCREEN_DENSITY_XLDPI = 320,
|
|
SCREEN_DENSITY_XXLDPI = 480,
|
|
SCREEN_DENSITY_XXXLDPI = 640,
|
|
}
|
|
}
|
|
|
|
export default ConfigurationConstant
|