UNPKG

von-sveltekit-lib

Version:

Components and functions for use in svelteKit vith Sanity backend

14 lines (13 loc) 340 B
export default SanityImage; type SanityImage = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<$$ComponentProps>): void; }; declare const SanityImage: import("svelte").Component<{ sanityImage: any; sizes: any; }, {}, "">; type $$ComponentProps = { sanityImage: any; sizes: any; };