Skip to content

Commit

Permalink
fix: definition issue
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Feb 1, 2024
1 parent db013dc commit 4213dae
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,52 @@ declare module "@capacitor/cli" {
* Configure the delay period for period update check. the unit is in seconds.
*
* Only available for Android and iOS.
* Cannot be less than 600 seconds (10 minutes).
*
* @default 600 // (10 minutes)
*/
periodCheckDelay?: number;

/**
* Configure the CLI to use a local server for testing or self-hosted update server.
*
*
* @default undefined
* @since 4.17.48
*/
localS3?: boolean;
/**
* Configure the CLI to use a local server for testing or self-hosted update server.
*
*
* @default undefined
* @since 4.17.48
*/
localHost?: string;
/**
* Configure the CLI to use a local server for testing or self-hosted update server.
*
*
* @default undefined
* @since 4.17.48
*/
localWebHost?: string;
/**
* Configure the CLI to use a local server for testing or self-hosted update server.
*
*
* @default undefined
* @since 4.17.48
*/
localSupa?: string;
/**
* Configure the CLI to use a local server for testing.
*
*
* @default undefined
* @since 4.17.48
*/
localSupaAnon?: string;
};
}
}
Expand Down

0 comments on commit 4213dae

Please sign in to comment.