expo-video
Version:
A cross-platform, performant video component for React Native and Expo with Web support
13 lines • 522 B
TypeScript
import type { VideoPlayer } from './VideoPlayer.types';
import type { VideoThumbnail } from './VideoThumbnail';
type ExpoVideoModule = {
VideoPlayer: typeof VideoPlayer;
VideoThumbnail: typeof VideoThumbnail;
isPictureInPictureSupported(): boolean;
setVideoCacheSizeAsync(sizeBytes: number): Promise<void>;
clearVideoCacheAsync(): Promise<void>;
getCurrentVideoCacheSize(): number;
};
declare const _default: ExpoVideoModule;
export default _default;
//# sourceMappingURL=NativeVideoModule.d.ts.map