dotvvm-types 4.3.0-preview05-final → 4.3.0
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/package.json +1 -1
- package/types/index.d.ts +2 -1
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -154,6 +154,7 @@ declare module "metadata/coercer" {
|
|
|
154
154
|
declare module "utils/promise" {
|
|
155
155
|
/** Runs the callback in the next event loop cycle */
|
|
156
156
|
export const defer: <T>(callback: () => T) => Promise<T>;
|
|
157
|
+
export const delay: (ms: number) => Promise<unknown>;
|
|
157
158
|
}
|
|
158
159
|
declare module "postback/updater" {
|
|
159
160
|
export function cleanUpdatedControls(resultObject: any, updatedControls?: any): any;
|
|
@@ -558,7 +559,7 @@ declare module "postback/counter" {
|
|
|
558
559
|
export function backUpPostBackCounter(): number;
|
|
559
560
|
}
|
|
560
561
|
declare module "utils/magic-navigator" {
|
|
561
|
-
export function navigate(url: string): void;
|
|
562
|
+
export function navigate(url: string, downloadName?: string | null | undefined): void;
|
|
562
563
|
}
|
|
563
564
|
declare module "postback/redirect" {
|
|
564
565
|
export function performRedirect(url: string, replace: boolean, allowSpa: boolean): Promise<any>;
|