@hyext-beyond/hy-ui-native
Version:
A native lib polyfill for huya miniapp
18 lines (17 loc) • 610 B
TypeScript
import React from 'react';
import { ImageBackgroundProps, ImageProps } from 'react-native';
export type MemoryImageProps = ImageProps & {
src: string;
enableMemory?: string[];
};
export declare const MemoryImage: React.FC<MemoryImageProps>;
export type MemoryBackgroundImageProps = ImageBackgroundProps & {
src: string;
enableMemory?: string[];
};
export declare const MemoryBackgroundImage: React.FC<MemoryBackgroundImageProps>;
declare const _default: {
MemoryBackgroundImage: React.FC<MemoryBackgroundImageProps>;
MemoryImage: React.FC<MemoryImageProps>;
};
export default _default;