Skip to content

Commit

Permalink
[TS migration] Migrate 'AppUpdate.js' lib to TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Sep 8, 2023
1 parent 7c9fc84 commit d2c1417
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ function triggerUpdateAvailable() {
Onyx.set(ONYXKEYS.UPDATE_AVAILABLE, true);
}

/**
* @param {Boolean} isBeta
*/
function setIsAppInBeta(isBeta) {
function setIsAppInBeta(isBeta: boolean) {
Onyx.set(ONYXKEYS.IS_BETA, isBeta);
}

Expand Down

0 comments on commit d2c1417

Please sign in to comment.