quasar
Version: 
Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
14 lines (11 loc) • 449 B
TypeScript
interface NativeMobileWrapperConfiguration {
  iosStatusBarPadding?: boolean;
  backButton?: boolean;
  backButtonExit?: boolean | "*" | string[];
}
export interface QuasarUIConfiguration {
  // These two are oddly structured and doesn't fit the API structure, so they don't have API definitions
  capacitor?: NativeMobileWrapperConfiguration;
  cordova?: NativeMobileWrapperConfiguration;
  // The rest will be augmented by auto-generated code
}