managarten/packages/shared-uload/src/index.ts
Till JS 8050da31ea feat(shared-uload): add shared package with ShareModal and cross-app link creation
Provides ShareModal component and initSharedUload/createShortLink utilities
for other apps to create uLoad short links with source tracking.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:33:25 +02:00

12 lines
429 B
TypeScript

// Types
export type { UloadLink, CreateShortLinkOptions, CreatedLink, AppSource } from './types';
export { APP_SOURCE_LABELS } from './types';
// Core API
export { initSharedUload, createShortLink, isSharedUloadReady } from './create-link';
// Utilities
export { generateShortCode, getQrCodeUrl, getShortUrl, downloadQrCode, QR_API } from './utils';
// Components
export { default as ShareModal } from './ShareModal.svelte';