mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-23 23:30:15 +00:00
3718899f7f
Description: env update notify interface Sig:SIG_ApplicationFramework Feature or BugFix: Feature Binary Source: No Change-Id: I4c0d3208255e7f44a67b18e339c55ac85e4948dd Signed-off-by: zhangyafei.echo <zhangyafei12@huawei.com>
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
/*
|
|
* Copyright (c) 2021-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.
|
|
*/
|
|
|
|
import { HapModuleInfo } from "../bundle/hapModuleInfo";
|
|
import { Configuration } from '../@ohos.application.Configuration';
|
|
import Context from "./Context";
|
|
|
|
/**
|
|
* The context of an extension. It allows access to extension-specific resources.
|
|
*
|
|
* @since 9
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
* @permission N/A
|
|
* @StageModelOnly
|
|
*/
|
|
export default class ExtensionContext extends Context {
|
|
|
|
/**
|
|
* Indicates configuration information about an module.
|
|
*
|
|
* @since 9
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
* @StageModelOnly
|
|
*/
|
|
currentHapModuleInfo: HapModuleInfo;
|
|
|
|
/**
|
|
* Indicates configuration information.
|
|
*
|
|
* @since 9
|
|
* @syscap SystemCapability.Ability.AbilityRuntime.Core
|
|
* @StageModelOnly
|
|
*/
|
|
config: Configuration;
|
|
} |