Kaynağa Gözat

Add missing type interface "waitForRender" (#4577)

Add missing type interface "waitForRender"
Minh Tran 6 yıl önce
ebeveyn
işleme
f1ef49e7ae
1 değiştirilmiş dosya ile 15 ekleme ve 0 silme
  1. 15
    0
      lib/src/interfaces/Options.ts

+ 15
- 0
lib/src/interfaces/Options.ts Dosyayı Görüntüle

@@ -690,6 +690,21 @@ export interface OptionsAnimationPropertiesId extends OptionsAnimationProperties
690 690
 }
691 691
 
692 692
 export interface OptionsAnimationSeparate {
693
+  /**
694
+   * Wait for the View to render before start animation
695
+   * Example:
696
+```js
697
+animations: {
698
+  push: {
699
+    waitForRender: true
700
+  },
701
+  showModal: {
702
+    waitForRender: true
703
+  }
704
+}
705
+```
706
+   */
707
+  waitForRender?: boolean;
693 708
   /**
694 709
    * Configure animations for the top bar
695 710
    */