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-image/build/ExpoImage.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import React from 'react';
import { NativeSyntheticEvent } from 'react-native';
import { ImageErrorEventData, ImageLoadEventData, ImageNativeProps, ImageProgressEventData } from './Image.types';
declare class ExpoImage extends React.PureComponent<ImageNativeProps> {
startAnimating: () => Promise<unknown> | unknown;
stopAnimating: () => Promise<unknown> | unknown;
lockResourceAsync: () => Promise<void>;
unlockResourceAsync: () => Promise<void>;
reloadAsync: () => Promise<void>;
onLoadStart: () => void;
onLoad: (event: NativeSyntheticEvent<ImageLoadEventData>) => void;
onProgress: (event: NativeSyntheticEvent<ImageProgressEventData>) => void;
onError: (event: NativeSyntheticEvent<ImageErrorEventData>) => void;
onLoadEnd: () => void;
render(): React.JSX.Element;
}
export default ExpoImage;
//# sourceMappingURL=ExpoImage.d.ts.map