@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
11 lines (10 loc) • 406 B
TypeScript
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;