Skip to content

Commit

Permalink
feat(ts): add mobile "bin" option
Browse files Browse the repository at this point in the history
  • Loading branch information
IlCallo authored and rstoenescu committed Sep 15, 2023
1 parent b4ce740 commit eedf4ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app-webpack/types/configuration/conf.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { QuasarElectronConfiguration } from "./electron-conf";
import { QuasarFrameworkConfiguration } from "./framework-conf";
import { QuasarPwaConfiguration } from "./pwa-conf";
import { QuasarSsrConfiguration } from "./ssr-conf";
import { QuasarMobileConfiguration } from "./mobile-conf";

type QuasarAnimationsConfiguration = "all" | QuasarAnimations[];

Expand Down Expand Up @@ -113,7 +114,7 @@ export interface QuasarHookParams {
quasarConf: QuasarConf;
}

export type QuasarConf = BaseQuasarConfiguration & {
export type QuasarConf = BaseQuasarConfiguration & QuasarMobileConfiguration & {
/** PWA specific [config](/quasar-cli/developing-pwa/configuring-pwa). */
pwa?: QuasarPwaConfiguration;
} & {
Expand Down
7 changes: 7 additions & 0 deletions app-webpack/types/configuration/mobile-conf.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export interface QuasarMobileConfiguration {
/** Manually specify Android Studio bin path, in case Quasar isn't able to locate it on your system */
bin?: {
linuxAndroidStudio?: string;
windowsAndroidStudio?: string;
}
}

0 comments on commit eedf4ae

Please sign in to comment.