react-native-rn-in-app-update
Version:
A minimal React Native module that displays the native Android in-app update popup using the Play Core library. Supports both immediate and flexible update types.
11 lines • 335 B
TypeScript
export type UpdateType = 'immediate' | 'flexible';
export type UpdateInfo = {
updateAvailability: number;
immediateAllowed: boolean;
flexibleAllowed: boolean;
versionCode: number;
clientVersionStalenessDays?: number;
totalBytesToDownload: number;
packageName?: string;
};
//# sourceMappingURL=types.d.ts.map