# ShortcutInfo > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 7 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 应用配置文件中定义的快捷方式信息,FA模型配置在[config.json](../../quick-start/application-configuration-file-overview-fa.md)文件中进行配置,Stage模型在开发视图的resources/base/profile下面定义配置文件即可。 ## ShortcutWant(deprecated) > 从API version 9开始不再维护,建议使用[bundleManager-ShortcutWant](js-apis-bundleManager-shortcutInfo.md)替代 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework **系统API:** 此接口为系统接口,三方应用不支持调用 | 名称 | 类型 | 可读 | 可写 | 说明 | | ------------------------- | ------ | ---- | ---- | -------------------- | | targetBundle | string | 是 | 否 | 快捷方式的目标捆绑包 | | targetClass | string | 是 | 否 | 快捷方式所需的目标类 | ## ShortcutInfo(deprecated) > 从API version 9开始不再维护,建议使用[bundleManager-ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)替代。 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework | 名称 | 类型 | 可读 | 可写 | 说明 | | ----------------------- | ------------------------------------------ | ---- | ---- | ---------------------------- | | id | string | 是 | 否 | 快捷方式所属应用程序的Id。 | | bundleName | string | 是 | 否 | 包含该快捷方式的包名称。 | | hostAbility | string | 是 | 否 | 快捷方式的本地Ability信息。 | | icon | string | 是 | 否 | 快捷方式的图标。 | | iconId8+ | number | 是 | 否 | 快捷方式的图标Id。 | | label | string | 是 | 否 | 快捷方式的名称。 | | labelId8+ | number | 是 | 否 | 快捷方式的名称Id。 | | disableMessage | string | 是 | 否 | 快捷方式的禁用消息。 | | wants | Array<[ShortcutWant](#shortcutwant)> | 是 | 否 | 快捷方式意图列表。 | | isStatic | boolean | 是 | 否 | 快捷方式是否为静态。 | | isHomeShortcut | boolean | 是 | 否 | 快捷方式是否为主页面快捷方式。 | | isEnabled | boolean | 是 | 否 | 是否启用快捷方式。 |