GT2/Ejectable/node_modules/expo-asset/build/ImageAssets.d.ts

9 lines
234 B
TypeScript

declare type ImageInfo = {
name: string;
width: number;
height: number;
};
export declare function isImageType(type: string): boolean;
export declare function getImageInfoAsync(url: string): Promise<ImageInfo>;
export {};