UNPKG

expo-updates

Version:

Fetches and manages remotely-hosted assets and updates to your app's JS bundle.

6 lines (5 loc) 209 B
export interface Client { getRootPathAsync(): Promise<string>; isFileIgnoredAsync(filePath: string): Promise<boolean>; } export default function getVCSClientAsync(projectDir: string): Promise<Client>;