1# Resource
2
3Provides resource information, such as the application bundle name, application module name, and resource ID.
4
5> **NOTE**
6>
7> 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.
8
9## Modules to Import
10
11```js
12import { resourceManager } from '@kit.LocalizationKit'
13```
14
15## Resource
16
17**Atomic service API**: This API can be used in atomic services since API version 11.
18
19**System capability**: SystemCapability.Global.ResourceManager
20
21| Name        | Type    | Readable  | Writable |Description         |
22| ---------- | ------ | ----- | ----  | ---------------|
23| bundleName | string | Yes   | No| Bundle name of the application.|
24| moduleName | string | Yes   | No| Module name of the application.|
25| id         | number | Yes   | No| Resource ID.     |
26| params     | any[] | Yes   | No| Other resource parameters, which are optional.     |
27| type       | number | Yes   | No| Resource type, which is optional.     |
28