Skip to content

Commit

Permalink
fixed the type mismatch for modalPresentationStyle (#4501)
Browse files Browse the repository at this point in the history
  • Loading branch information
masarusanjp authored and guyca committed Dec 26, 2018
1 parent 02985c5 commit 9ef60e9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/src/interfaces/Options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ export interface OptionsLayout {
}

export enum OptionsModalPresentationStyle {
'formSheet',
'pageSheet',
'overFullScreen',
'overCurrentContext',
'currentContext',
'popOver',
'fullScreen',
'none',
formSheet = 'formSheet',
pageSheet = 'pageSheet',
overFullScreen = 'overFullScreen',
overCurrentContext = 'overCurrentContext',
currentContext = 'currentContext',
popOver = 'popOver',
fullScreen = 'fullScreen',
none = 'none'
}

export interface OptionsTopBarLargeTitle {
Expand Down

0 comments on commit 9ef60e9

Please sign in to comment.