UNPKG

@expo/fingerprint

Version:

A library to generate a fingerprint from a React Native project

7 lines (6 loc) 312 B
import { type SpawnOptions, type SpawnPromise, type SpawnResult } from '@expo/spawn-async'; interface SpawnWithIpcResult extends SpawnResult { message: string; } export declare function spawnWithIpcAsync(command: string, args?: string[], options?: SpawnOptions): SpawnPromise<SpawnWithIpcResult>; export {};