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

47
node_modules/@expo/log-box/build/Data/Types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,47 @@
import { type StackFrame as UpstreamStackFrame } from 'stacktrace-parser';
export type Message = {
content: string;
substitutions: {
length: number;
offset: number;
}[];
};
export type Category = string;
export type CodeFrame = {
content: string;
location?: {
row: number;
column: number;
[key: string]: any;
} | null;
fileName: string;
collapse?: boolean;
};
export type SymbolicationStatus = 'NONE' | 'PENDING' | 'COMPLETE' | 'FAILED';
export type LogLevel = 'error' | 'fatal' | 'syntax' | 'resolution' | 'static';
export type StackType = 'stack' | 'component';
export type LogBoxLogData = {
level: LogLevel;
type?: string;
message: Message;
stack: MetroStackFrame[];
category: string;
componentStack: MetroStackFrame[];
codeFrame: Partial<Record<StackType, CodeFrame>>;
isComponentError: boolean;
isMissingModuleError?: string;
extraData?: Record<string, unknown>;
};
export type LogBoxLogDataLegacy = {
level: LogLevel;
type?: string;
message: Message;
stack: MetroStackFrame[];
category: string;
componentStack: CodeFrame[];
codeFrame?: CodeFrame;
isComponentError: boolean;
};
export type MetroStackFrame = Omit<UpstreamStackFrame, 'arguments'> & {
collapse?: boolean;
};

2
node_modules/@expo/log-box/build/Data/Types.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });