@wippy-fe/types-global-proxy 0.0.14 → 0.0.16
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/index.d.ts +7 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -823,6 +823,9 @@ declare const _default: {
|
|
|
823
823
|
info: Record<string, string>;
|
|
824
824
|
help: Record<string, string>;
|
|
825
825
|
accent: Record<string, string>;
|
|
826
|
+
surface: {
|
|
827
|
+
850: string;
|
|
828
|
+
};
|
|
826
829
|
};
|
|
827
830
|
};
|
|
828
831
|
};
|
|
@@ -845,9 +848,11 @@ declare global {
|
|
|
845
848
|
config: () => Promise<AppConfig>;
|
|
846
849
|
instance: () => Promise<ProxyApiInstance>;
|
|
847
850
|
api: () => Promise<ProxyApiInstance['api']>;
|
|
848
|
-
|
|
851
|
+
/** @deprecated Use `$W.api` instead */
|
|
852
|
+
form: () => Promise<ProxyApiInstance['api']>;
|
|
849
853
|
host: () => Promise<ProxyApiInstance['host']>;
|
|
850
|
-
|
|
854
|
+
/** @deprecated Use `$W.host` instead */
|
|
855
|
+
iframe: () => Promise<ProxyApiInstance['host']>;
|
|
851
856
|
on: () => Promise<ProxyApiInstance['on']>;
|
|
852
857
|
state: () => Promise<ProxyApiInstance['state']>;
|
|
853
858
|
loadWebComponent: () => Promise<ProxyApiInstance['loadWebComponent']>;
|