Explorar el Código

fixed the type mismatch for modalPresentationStyle (#4501)

Masaru Ichikawa hace 5 años
padre
commit
9ef60e9bd9
Se han modificado 1 ficheros con 8 adiciones y 8 borrados
  1. 8
    8
      lib/src/interfaces/Options.ts

+ 8
- 8
lib/src/interfaces/Options.ts Ver fichero

@@ -72,14 +72,14 @@ export interface OptionsLayout {
72 72
 }
73 73
 
74 74
 export enum OptionsModalPresentationStyle {
75
-  'formSheet',
76
-  'pageSheet',
77
-  'overFullScreen',
78
-  'overCurrentContext',
79
-  'currentContext',
80
-  'popOver',
81
-  'fullScreen',
82
-  'none',
75
+  formSheet = 'formSheet',
76
+  pageSheet = 'pageSheet',
77
+  overFullScreen = 'overFullScreen',
78
+  overCurrentContext = 'overCurrentContext',
79
+  currentContext = 'currentContext',
80
+  popOver = 'popOver',
81
+  fullScreen = 'fullScreen',
82
+  none = 'none'
83 83
 }
84 84
 
85 85
 export interface OptionsTopBarLargeTitle {