• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/**
17 * Provide an interface for the ability component.
18 * @since 9
19 * @systemapi
20 */
21interface AbilityComponentInterface {
22  /**
23   * Construct the ability component.
24   * Called when the ability component is used.
25   * @since 9
26   * @systemapi
27   */
28  (value: {want: import('../api/@ohos.app.ability.Want').default}): AbilityComponentAttribute;
29}
30
31/**
32 * Define the attribute functions of ability component.
33 * @since 9
34 * @systemapi
35 */
36declare class AbilityComponentAttribute extends CommonMethod<AbilityComponentAttribute> {
37  /**
38   * Called when the component is connected to ability.
39   * @since 9
40   * @systemapi
41   */
42  onConnect(callback: () => void): AbilityComponentAttribute;
43  /**
44   * Called when the component is disconnected.
45   * @since 9
46   * @systemapi
47   */
48   onDisconnect(callback: () => void): AbilityComponentAttribute;
49}
50
51/**
52 * Defines AbilityComponent Component.
53 * @since 9
54 */
55declare const AbilityComponent: AbilityComponentInterface;
56
57/**
58 * Defines AbilityComponent Component instance.
59 * @since 9
60 */
61declare const AbilityComponentInstance: AbilityComponentAttribute;
62