@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
8 lines (7 loc) • 376 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 LightboxList: import("svelte").Component<Props, {}, "">;
type LightboxList = ReturnType<typeof LightboxList>;
export default LightboxList;