bt-core-app 2.0.64 → 2.0.65
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 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -704,7 +704,7 @@ declare interface CreateStoreOptions {
|
|
|
704
704
|
|
|
705
705
|
export declare function createUrl(options: CreateUrlOptions): CreateUrlOptions;
|
|
706
706
|
|
|
707
|
-
declare interface CreateUrlOptions {
|
|
707
|
+
export declare interface CreateUrlOptions {
|
|
708
708
|
getDocTitle?: () => string | undefined;
|
|
709
709
|
getEnv?: () => string;
|
|
710
710
|
production: UrlSet;
|
|
@@ -1716,12 +1716,12 @@ declare interface UpdateBladeData<T extends GetOptions<any, any>> {
|
|
|
1716
1716
|
data?: T;
|
|
1717
1717
|
}
|
|
1718
1718
|
|
|
1719
|
-
declare interface UrlOrigin {
|
|
1719
|
+
export declare interface UrlOrigin {
|
|
1720
1720
|
origin: string;
|
|
1721
1721
|
tabTitle?: string;
|
|
1722
1722
|
}
|
|
1723
1723
|
|
|
1724
|
-
declare interface UrlSet {
|
|
1724
|
+
export declare interface UrlSet {
|
|
1725
1725
|
auth?: string;
|
|
1726
1726
|
data?: string;
|
|
1727
1727
|
localDbName?: string;
|
package/package.json
CHANGED