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

20
node_modules/@expo/metro/metro-cache/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import Cache from "./Cache";
import stableHash from "./stableHash";
import AutoCleanFileStore from "./stores/AutoCleanFileStore";
import FileStore from "./stores/FileStore";
import HttpGetStore from "./stores/HttpGetStore";
import HttpStore from "./stores/HttpStore";
export type { Options as FileOptions } from "./stores/FileStore";
export type { Options as HttpOptions } from "./stores/HttpStore";
export type { CacheStore } from "./types";
export { AutoCleanFileStore, Cache, FileStore, HttpGetStore, HttpStore, stableHash };
export interface MetroCache {
readonly AutoCleanFileStore: typeof AutoCleanFileStore;
readonly Cache: typeof Cache;
readonly FileStore: typeof FileStore;
readonly HttpGetStore: typeof HttpGetStore;
readonly HttpStore: typeof HttpStore;
readonly stableHash: typeof stableHash;
}
declare const $$EXPORT_DEFAULT_DECLARATION$$: MetroCache;
export default $$EXPORT_DEFAULT_DECLARATION$$;