UNPKG

@daks.dev/svelte.sdk

Version:
11 lines (10 loc) 406 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 Lightbox: import("svelte").Component<Props, { open: () => void; close: () => void; }, "">; type Lightbox = ReturnType<typeof Lightbox>; export default Lightbox;