# ShortcutInfo The **ShortcutInfo** module provides shortcut information defined in the configuration file. For details about the configuration in the FA model, see [config.json](../../quick-start/package-structure.md). For details about the configuration in the stage model, see [Internal Structure of the shortcuts Attribute](../../quick-start/stage-structure.md#internal-structure-of-the-shortcuts-attribute). > **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. ## ShortcutWant **System capability**: SystemCapability.BundleManager.BundleFramework.Launcher **System API**: This is a system API. | Name | Type | Readable| Writable| Description | | ------------------------- | ------ | ---- | ---- | -------------------- | | targetBundle | string | Yes | No | Target bundle name of the shortcut.| | targetModule | string | Yes | No | Target module name of the shortcut. | | targetAbility | string | Yes | No | Target ability name of the shortcut.| ## ShortcutInfo **System capability**: SystemCapability.BundleManager.BundleFramework.Launcher **System API**: This is a system API. | Name | Type | Readable| Writable| 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 | No | Module name of the shortcut. | | hostAbility | string | Yes | No | Local ability name of the shortcut. | | icon | string | Yes | No | Icon of the shortcut. | | iconId | number | Yes | No | Icon ID of the shortcut. | | label | string | Yes | No | Label of the shortcut. | | labelId | number | Yes | No | Label ID of the shortcut. | | wants | Array\<[ShortcutWant](#shortcutwant)> | Yes | No | Want information required for the shortcut. |