# @ohos.app.ability.common (Context) You can use this module to reference the ability public module class. > **NOTE** > > 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. ## Modules to Import ```ts import { common } from '@kit.AbilityKit'; ``` ## Properties **System capability**: SystemCapability.Ability.AbilityRuntime.Core | Name| Type| Read Only| Optional| Description | | ---- | ---- | ---- | ---- | ---------- | | UIAbilityContext | [UIAbilityContext](js-apis-inner-application-uiAbilityContext.md) | No | No | Level-2 module **UIAbilityContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model. | | AbilityStageContext | [AbilityStageContext](js-apis-inner-application-abilityStageContext.md) | No | No | Level-2 module **AbilityStageContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | ApplicationContext | [ApplicationContext](js-apis-inner-application-applicationContext.md) | No | No | Level-2 module **ApplicationContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | BaseContext | [BaseContext](js-apis-inner-application-baseContext.md) | No | No | Level-2 module **BaseContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | Context | [Context](js-apis-inner-application-context.md) | No | No | Level-2 module **Context**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | ExtensionContext | [ExtensionContext](js-apis-inner-application-extensionContext.md) | No | No | Level-2 module **ExtensionContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | FormExtensionContext | [FormExtensionContext](../apis-form-kit/js-apis-inner-application-formExtensionContext.md) | No | No | Level-2 module **FormExtensionContext**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | VpnExtensionContext11+ | VpnExtensionContext | No | No | Level-2 module **VpnExtensionContext**.
**Model restriction**: This API can be used only in the stage model.| | EventHub | [EventHub](js-apis-inner-application-eventHub.md) | No | No | Level-2 module **EventHub**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | PacMap | [PacMap](js-apis-inner-ability-dataAbilityHelper.md#pacmap) | No | No | Level-2 module **PacMap**.
**Atomic service API**: This API can be used in atomic services since API version 11.| | AbilityResult | [AbilityResult](js-apis-inner-ability-abilityResult.md) | No | No | Level-2 module **AbilityResult**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | AbilityStartCallback11+ | [AbilityStartCallback](js-apis-inner-application-abilityStartCallback.md) | No | No | Level-2 module **AbilityStartCallback**.
**Atomic service API**: This API can be used in atomic services since API version 11.
**Model restriction**: This API can be used only in the stage model.| | ConnectOptions | [ConnectOptions](js-apis-inner-ability-connectOptions.md) | No | No | Level-2 module **ConnectOptions**.
**Model restriction**: This API can be used only in the stage model.| | EmbeddableUIAbilityContext12+ | [EmbeddableUIAbilityContext](js-apis-inner-application-EmbeddableUIAbilityContext.md) | No | No | Level-2 module **EmbeddableUIAbilityContext**.
**Atomic service API**: This API can be used in atomic services since API version 12.
**Model restriction**: This API can be used only in the stage model.| | UIServiceProxy 13+ | [UIServiceProxy ](js-apis-inner-application-uiserviceproxy.md) | No | No | Level-2 module **UIServiceProxy**.
**Atomic service API**: This API can be used in atomic services since API version 13.
**Model restriction**: This API can be used only in the stage model.| | UIServiceExtensionConnectCallback 13+ | [UIServiceExtensionConnectCallback](js-apis-inner-application-uiServiceExtensionconnectcallback.md) | No | No | Level-2 module **UIServiceExtensionConnectCallback**.
**Atomic service API**: This API can be used in atomic services since API version 13.
**Model restriction**: This API can be used only in the stage model.| **Example** ```ts import { common } from '@kit.AbilityKit'; let uiAbilityContext: common.UIAbilityContext; let abilityStageContext: common.AbilityStageContext; let applicationContext: common.ApplicationContext; let baseContext: common.BaseContext; let context: common.Context; let extensionContext: common.ExtensionContext; let formExtensionContext: common.FormExtensionContext; let vpnExtensionContext: common.VpnExtensionContext; let eventHub: common.EventHub; let pacMap: common.PacMap; let abilityResult: common.AbilityResult; let abilityStartCallback: common.AbilityStartCallback; let connectOptions: common.ConnectOptions; let embeddableUIAbilityContext: common.EmbeddableUIAbilityContext; let uiServiceProxy : common.UIServiceProxy; let uiServiceExtensionConnectCallback : common.UIServiceExtensionConnectCallback; ```