代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony/interface_sdk-js 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* Copyright (c) 2022-2024 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.
*/
/**
* @file
* @kit AbilityKit
*/
/**
* The context of an application. It allows access to application-specific resources.
*
* @namespace contextConstant
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @since 9
*/
/**
* The context of an application. It allows access to application-specific resources.
*
* @namespace contextConstant
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @atomicservice
* @since 11
*/
declare namespace contextConstant {
/**
* File area mode
*
* @enum { number }
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @since 9
*/
/**
* File area mode
*
* @enum { number }
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @atomicservice
* @since 11
*/
export enum AreaMode {
/**
* System level device encryption area
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @since 9
*/
/**
* System level device encryption area
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @atomicservice
* @since 11
*/
EL1 = 0,
/**
* User credential encryption area
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @since 9
*/
/**
* User credential encryption area
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @StageModelOnly
* @atomicservice
* @since 11
*/
EL2 = 1,
/**
* User credential encryption area
* when screen locked, can read/write, and create file
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @atomicservice
* @since 11
*/
EL3 = 2,
/**
* User credential encryption area
* when screen locked, FEB2.0 can read/write, FEB3.0 can't
* read/write, and all can't create file
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @atomicservice
* @since 11
*/
EL4 = 3,
/**
* User privacy sensitive encryption area
* when the screen locked, a closed file cannot be opened, read, or written,
* a file can be created and then opened, read, or written.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @atomicservice
* @since 12
*/
EL5 = 4
}
/**
* Process mode
*
* @enum { number }
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
export enum ProcessMode {
/**
* Indicates the ability started in a new process, and the process lifecycle follows the parent process.
* When using this mode, the target ability needs to have the same bundle name as the caller.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
NEW_PROCESS_ATTACH_TO_PARENT = 1,
/**
* Indicates the ability started in a new process.
* When using this mode, the caller needs to add item to status bar first,
* and the target ability needs to have the same bundle name as the caller.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
NEW_PROCESS_ATTACH_TO_STATUS_BAR_ITEM = 2,
/**
* Indicates the ability started without forcing the creation of a new process.
* When using this mode, the caller needs to add item to status bar first,
* and the target ability needs to have the same bundle name as the caller.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
ATTACH_TO_STATUS_BAR_ITEM = 3
}
/**
* Startup visibility
*
* @enum { number }
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
export enum StartupVisibility {
/**
* Indicates that the ability will hide after process startup.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
STARTUP_HIDE = 0,
/**
* Indicates that the ability will show after process startup.
*
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @stagemodelonly
* @since 12
*/
STARTUP_SHOW = 1
}
}
export default contextConstant;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。