diff --git a/lib/src/interfaces/Options.ts b/lib/src/interfaces/Options.ts index d05c8ceab4a..5ca02896a42 100644 --- a/lib/src/interfaces/Options.ts +++ b/lib/src/interfaces/Options.ts @@ -690,6 +690,21 @@ export interface OptionsAnimationPropertiesId extends OptionsAnimationProperties } export interface OptionsAnimationSeparate { + /** + * Wait for the View to render before start animation + * Example: +```js +animations: { + push: { + waitForRender: true + }, + showModal: { + waitForRender: true + } +} +``` + */ + waitForRender?: boolean; /** * Configure animations for the top bar */