denwa-web-shared 1.0.18 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DetailedHTMLProps, FC, HTMLAttributes, ImgHTMLAttributes } from 'react';
|
|
2
2
|
import { ImageType } from '../types';
|
|
3
|
-
interface BasePictureProps extends DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
export interface BasePictureProps extends DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
4
4
|
imgProps?: DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
|
|
5
5
|
image1x: string;
|
|
6
6
|
image2x?: string;
|
|
@@ -20,4 +20,3 @@ interface BasePictureProps extends DetailedHTMLProps<HTMLAttributes<HTMLElement>
|
|
|
20
20
|
loading?: 'eager' | 'lazy';
|
|
21
21
|
}
|
|
22
22
|
export declare const BasePicture: FC<BasePictureProps>;
|
|
23
|
-
export {};
|