@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
9 lines (8 loc) • 353 B
TypeScript
import React, { FC } from 'react';
import { StorageRef } from '../../../../../common/types';
interface PropsStorageRefImage extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
storageRef: StorageRef | string;
noImgSrc: string;
}
export declare const StorageRefImg: FC<PropsStorageRefImage>;
export {};