Files
Fluxup_PAP/node_modules/@expo/fingerprint/build/utils/SpawnIPC.d.ts
2026-03-10 16:18:05 +00:00

7 lines
312 B
TypeScript

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 {};