# ShortcutInfo (System API)
The **ShortcutInfo** module defines shortcut information configured in the configuration file. The information can be obtained through [getShortcutInfo](js-apis-launcherBundleManager-sys.md#launcherbundlemanagergetshortcutinfo9).
> **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.
>
> For the FA model, the shortcut information is configured in the [config.json](../../quick-start/module-structure.md) file. For details about the shortcut information in the stage model, see [shortcuts](../../quick-start/module-configuration-file.md#shortcuts).
>
> The APIs provided by this module are system APIs.
## ShortcutWant
**System capability**: SystemCapability.BundleManager.BundleFramework.Launcher
**System API**: This is a system API.
| Name | Type | Read-Only| Optional| Description |
| ------------------------- | ------ | ---- | ---- | -------------------- |
| targetBundle | string | Yes | No | Target bundle name of the shortcut.|
| targetModule | string | Yes | Yes | Target module name of the shortcut. |
| targetAbility | string | Yes | No | Target ability name of the shortcut.|
| parameters12+ | Array\<[ParameterItem](#parameteritem12)> | No | Yes | Custom data in the shortcut configuration.|
## ShortcutInfo
**System capability**: SystemCapability.BundleManager.BundleFramework.Launcher
**System API**: This is a system API.
| Name | Type | Read-Only| Optional| Description |
| ----------------------- | ------------------------------------------ | ---- | ---- | ---------------------------- |
| id | string | Yes | No| ID of the application to which the shortcut belongs. |
| bundleName | string | Yes | No | Name of the bundle that contains the shortcut.|
| moduleName | string | Yes | Yes | Module name of the shortcut. |
| hostAbility | string | Yes | Yes | Local ability name of the shortcut. |
| icon | string | Yes | Yes | Icon of the shortcut. |
| iconId | number | Yes | Yes | ID of the shortcut icon. |
| label | string | Yes | Yes | Label of the shortcut. |
| labelId | number | Yes | Yes | ID of the shortcut label. |
| wants | Array\<[ShortcutWant](#shortcutwant)> | Yes | Yes | Want information required for the shortcut. |
| appIndex12+ | number | No| No| Index of an application clone.|
| sourceType12+ | number | No| No| Shortcut source type. The value **0** means a custom shortcut, and **1** means a static shortcut.|
## ParameterItem12+
Describes the custom data in the shortcut configuration.
**System capability**: SystemCapability.BundleManager.BundleFramework.Launcher
| Name | Type | Read-Only| Optional| Description |
| ------------- | ------ | ---- | ---------------------- | ---------------------- |
| key | string | No | No | Key of the custom data. |
| value | string | No | No | Value of the custom data.|