@iotexproject/kit 0.0.102 → 0.0.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8472,13 +8472,12 @@ declare class Contract extends BaseDBModule {
|
|
|
8472
8472
|
export type ComponentType = "banner-latest" | "iotex-2.0";
|
|
8473
8473
|
export interface ComponentData {
|
|
8474
8474
|
id: ComponentType;
|
|
8475
|
-
|
|
8476
|
-
|
|
8475
|
+
html: string;
|
|
8476
|
+
html_mobile: string;
|
|
8477
8477
|
}
|
|
8478
8478
|
declare class Resource {
|
|
8479
|
-
|
|
8479
|
+
get_component({ id }: {
|
|
8480
8480
|
id: ComponentType;
|
|
8481
|
-
mobile?: boolean;
|
|
8482
8481
|
}): Promise<ComponentData>;
|
|
8483
8482
|
}
|
|
8484
8483
|
declare const modules$1: {
|