1e41f4b71Sopenharmony_ci# @ohos.app.ability.common (Context) (System API)
2e41f4b71Sopenharmony_ci
3e41f4b71Sopenharmony_ciYou can use this module to reference the ability public module class.
4e41f4b71Sopenharmony_ci
5e41f4b71Sopenharmony_ci> **NOTE**
6e41f4b71Sopenharmony_ci> 
7e41f4b71Sopenharmony_ci> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8e41f4b71Sopenharmony_ci>
9e41f4b71Sopenharmony_ci> The APIs of this module can be used only in the stage model.
10e41f4b71Sopenharmony_ci>
11e41f4b71Sopenharmony_ci> This topic describes only system APIs provided by the module. For details about its public APIs, see [@ohos.app.ability.common (Context)](js-apis-app-ability-common.md).
12e41f4b71Sopenharmony_ci
13e41f4b71Sopenharmony_ci## Modules to Import
14e41f4b71Sopenharmony_ci
15e41f4b71Sopenharmony_ci```ts
16e41f4b71Sopenharmony_ciimport { common } from '@kit.AbilityKit';
17e41f4b71Sopenharmony_ci```
18e41f4b71Sopenharmony_ci## Properties
19e41f4b71Sopenharmony_ci
20e41f4b71Sopenharmony_ci**System capability**: SystemCapability.Ability.AbilityRuntime.Core
21e41f4b71Sopenharmony_ci
22e41f4b71Sopenharmony_ci| Name | Type | Read Only | Optional | Description           |
23e41f4b71Sopenharmony_ci| ----- | ---- | ----- | ----- | -------------- |
24e41f4b71Sopenharmony_ci| ServiceExtensionContext | [ServiceExtensionContext](js-apis-inner-application-serviceExtensionContext-sys.md) | No | No | Level-2 module **ServiceExtensionContext**.<br>**System API**: This is a system API.|
25e41f4b71Sopenharmony_ci| AutoFillExtensionContext<sup>11+<sup>   | [AutoFillExtensionContext](js-apis-inner-application-autoFillExtensionContext-sys.md) | No | No | Level-2 module **AutoFillExtensionContext**.<br>**System API**: This is a system API.|
26e41f4b71Sopenharmony_ci| AutoStartupInfo<sup>11+<sup>   | [AutoStartupInfo](js-apis-inner-application-autoStartupInfo-sys.md) | No | No | Level-2 module **AutoStartupInfo**.<br>**System API**: This is a system API.|
27e41f4b71Sopenharmony_ci| AutoStartupCallback<sup>11+<sup>   | [AutoStartupCallback](js-apis-inner-application-autoStartupCallback-sys.md) | No | No | Level-2 module **AutoStartupCallback**.<br>**System API**: This is a system API.|
28e41f4b71Sopenharmony_ci| UIServiceExtensionContext<sup>13+<sup> | [UIServiceExtensionContext ](js-apis-inner-application-uiserviceExtensionContext-sys.md) |  No | No |Level-2 module **UIServiceExtensionContext**.<br>**System API**: This is a system API.|
29e41f4b71Sopenharmony_ci| UIServiceHostProxy<sup>13+<sup> | [UIServiceHostProxy](js-apis-inner-application-uiservicehostproxy-sys.md) |  No | No | Level-2 module **UIServiceHostProxy**.<br>**System API**: This is a system API.|
30e41f4b71Sopenharmony_ci
31e41f4b71Sopenharmony_ci**Example**
32e41f4b71Sopenharmony_ci
33e41f4b71Sopenharmony_ci```ts
34e41f4b71Sopenharmony_ciimport { common } from '@kit.AbilityKit';
35e41f4b71Sopenharmony_ci
36e41f4b71Sopenharmony_cilet uiAbilityContext: common.UIAbilityContext;
37e41f4b71Sopenharmony_cilet abilityStageContext: common.AbilityStageContext;
38e41f4b71Sopenharmony_cilet applicationContext: common.ApplicationContext;
39e41f4b71Sopenharmony_cilet baseContext: common.BaseContext;
40e41f4b71Sopenharmony_cilet context: common.Context;
41e41f4b71Sopenharmony_cilet extensionContext: common.ExtensionContext;
42e41f4b71Sopenharmony_cilet formExtensionContext: common.FormExtensionContext;
43e41f4b71Sopenharmony_cilet vpnExtensionContext: common.VpnExtensionContext;
44e41f4b71Sopenharmony_cilet eventHub: common.EventHub;
45e41f4b71Sopenharmony_cilet pacMap: common.PacMap;
46e41f4b71Sopenharmony_cilet abilityResult: common.AbilityResult;
47e41f4b71Sopenharmony_cilet abilityStartCallback: common.AbilityStartCallback;
48e41f4b71Sopenharmony_cilet connectOptions: common.ConnectOptions;
49e41f4b71Sopenharmony_cilet autoFillExtensionContext: common.AutoFillExtensionContext;
50e41f4b71Sopenharmony_cilet uiServiceExtensionContext: common.UIServiceExtensionContext;
51e41f4b71Sopenharmony_cilet uiServiceHostProxy: common.UIServiceHostProxy;
52e41f4b71Sopenharmony_ci```
53