first commit
This commit is contained in:
13
frontend/node_modules/rc-image/es/hooks/useStatus.d.ts
generated
vendored
Normal file
13
frontend/node_modules/rc-image/es/hooks/useStatus.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
type ImageStatus = 'normal' | 'error' | 'loading';
|
||||
export default function useStatus({ src, isCustomPlaceholder, fallback, }: {
|
||||
src: string;
|
||||
isCustomPlaceholder?: boolean;
|
||||
fallback?: string;
|
||||
}): readonly [(img?: HTMLImageElement) => void, {
|
||||
src: string;
|
||||
onLoad?: undefined;
|
||||
} | {
|
||||
onLoad: () => void;
|
||||
src: string;
|
||||
}, ImageStatus];
|
||||
export {};
|
||||
Reference in New Issue
Block a user