UNPKG

@daks.dev/svelte.sdk

Version:
8 lines (7 loc) 376 B
import './index.css'; import type { SvelteHTMLElements } from 'svelte/elements'; import type { LightboxAttributes } from './index.d.ts'; type Props = Omit<SvelteHTMLElements['div'], 'class' | 'title'> & LightboxAttributes; declare const LightboxList: import("svelte").Component<Props, {}, "">; type LightboxList = ReturnType<typeof LightboxList>; export default LightboxList;