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