first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

9
node_modules/@expo/devcert/dist/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import { ExecFileSyncOptions } from 'child_process';
export declare function openssl(args: string[]): string | Buffer;
export declare function run(cmd: string, args: string[], options?: ExecFileSyncOptions): string | Buffer;
export declare function sudoAppend(file: string, input: ExecFileSyncOptions["input"]): void;
export declare function waitForUser(): Promise<unknown>;
export declare function reportableError(message: string): Error;
export declare function mktmp(): string;
export declare function sudo(cmd: string): Promise<string | null>;
export declare function commandExists(command: string): string | null;