Skip to content

Commit

Permalink
fix(config): update types for scrollPadding, inputBlurring and hideCa…
Browse files Browse the repository at this point in the history
…retOnScroll to boolean (#17302)
  • Loading branch information
fermedina authored and brandyscarney committed Feb 12, 2019
1 parent 370da9d commit 39fbc32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/utils/config.ts
Expand Up @@ -168,10 +168,10 @@ export interface IonicConfig {
// PRIVATE configs
keyboardHeight?: number;
inputShims?: boolean;
scrollPadding?: string;
inputBlurring?: string;
scrollPadding?: boolean;
inputBlurring?: boolean;
scrollAssist?: boolean;
hideCaretOnScroll?: string;
hideCaretOnScroll?: boolean;

// INTERNAL configs
persistConfig?: boolean;
Expand Down

0 comments on commit 39fbc32

Please sign in to comment.