interface_sdk-js/api/@ohos.app.ability.ConfigurationConstant.d.ts
yangzk cb04a3bebc IssueNo: #I5RT32
Description: add ConfigurationConstant
Sig: SIG_ApplicationFramework
Feature or Bugfix: Feature
Binary Source: No

Signed-off-by: yangzk <yangzhongkai@huawei.com>
Change-Id: Ia3092286b30f36e05eba91bc756e84cb48a55b14
2022-10-18 19:40:58 +08:00

66 lines
1.8 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.
* @namespace ConfigurationConstant
* @syscap SystemCapability.Ability.AbilityBase
* @since 9
*/
declare namespace ConfigurationConstant {
/**
* ColorMode
* @enum { number }
* @syscap SystemCapability.Ability.AbilityBase
* @since 9
*/
export enum ColorMode {
COLOR_MODE_NOT_SET = -1,
COLOR_MODE_DARK = 0,
COLOR_MODE_LIGHT = 1,
}
/**
* Direction
* @enum { number }
* @syscap SystemCapability.Ability.AbilityBase
* @since 9
*/
export enum Direction {
DIRECTION_NOT_SET = -1,
DIRECTION_VERTICAL = 0,
DIRECTION_HORIZONTAL = 1,
}
/**
* ScreenDensity
* @name ScreenDensity
* @enum { number }
* @syscap SystemCapability.Ability.AbilityBase
* @since 9
*/
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