UNPKG

@daks.dev/svelte.sdk

Version:
21 lines (20 loc) 627 B
import type { SignAttributes } from '../../ui/sign/index.d.ts'; import type { LightboxAttributes } from './index.d.ts'; type Props = LightboxAttributes & { sources: ImageMetainfo[]; modifieds: ImageMetainfo[]; sign?: string | SignAttributes; alt?: string; grid?: boolean; adaptive?: boolean; centered?: boolean; rounded?: boolean; shadow?: boolean; scale?: boolean; grayscale?: boolean; invert?: boolean; native?: boolean; }; declare const LightboxKit: import("svelte").Component<Props, {}, "">; type LightboxKit = ReturnType<typeof LightboxKit>; export default LightboxKit;