expo-updates
Version:
Fetches and manages remotely-hosted assets and updates to your app's JS bundle.
10 lines (9 loc) • 433 B
TypeScript
import * as Fingerprint from 'expo/fingerprint';
import { Workflow } from './workflow';
export declare function resolveRuntimeVersionAsync(projectRoot: string, platform: 'ios' | 'android', fingerprintOptions: Fingerprint.Options, otherOptions: {
workflowOverride?: Workflow;
}): Promise<{
runtimeVersion: string | null;
fingerprintSources: Fingerprint.FingerprintSource[] | null;
workflow: 'managed' | 'generic';
}>;