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

19
node_modules/expo-image/build/ImageModule.web.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { NativeModule } from 'expo-modules-core';
import { ImageCacheConfig, type ImageNativeModule, ImageRef, ImageSource } from './Image.types';
declare class ImageModule extends NativeModule implements ImageNativeModule {
Image: typeof ImageRef;
prefetch(urls: string | string[], _: unknown, __: unknown): Promise<boolean>;
clearMemoryCache(): Promise<boolean>;
clearDiskCache(): Promise<boolean>;
configureCache(_: ImageCacheConfig): void;
loadAsync(source: ImageSource): Promise<ImageRef>;
getCachePathAsync(_: string): Promise<string | null>;
generateBlurhashAsync(_: string | ImageRef, __: [number, number] | {
width: number;
height: number;
}): Promise<string | null>;
generateThumbhashAsync(_: string | ImageRef): Promise<string>;
}
declare const _default: typeof ImageModule;
export default _default;
//# sourceMappingURL=ImageModule.web.d.ts.map