mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 18:59:40 +02:00
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>
12 lines
429 B
TypeScript
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';
|