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

18
node_modules/expo-server/build/mjs/runtime/scope.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
export type UpdateResponseHeaders = Headers | Record<string, string | string[]> | ((headers: Headers) => Headers | void);
export interface RequestAPI {
origin?: string | null;
environment?: string | null;
requestHeaders?: Headers;
waitUntil?(promise: Promise<unknown>): void;
deferTask?(fn: () => Promise<unknown> | void): void;
setResponseHeaders?(updateHeaders: UpdateResponseHeaders): void;
}
export interface ScopeDefinition<Scope extends RequestAPI = any> {
getStore(): Scope | undefined;
run<R>(scope: Scope, runner: () => R): R;
run<R, TArgs extends any[]>(scope: Scope, runner: (...args: TArgs) => R, ...args: TArgs): R;
}
declare const scopeRef: {
current: ScopeDefinition<RequestAPI> | null;
};
export { scopeRef };