interface_sdk-js/api/application/ExtensionContext.d.ts
zhangyafei.echo 3718899f7f IssueNo: SR000GP4TG SR000GP4TE SR000GP4TG SR000GP4TI
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>
2022-02-21 21:24:13 +08:00

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;
}