/** * Upload Module * Provides upload functionality with progress tracking * * Cross-platform upload helper that provides real-time progress events. * - Node.js: Uses http/https modules with chunked writes * - Browser: Uses XMLHttpRequest with progress events * * @example * ```typescript * import { uploadWithProgress } from '@plyaz/api'; * * const result = await uploadWithProgress({ * url: 'https://storage.example.com/upload', * data: fileBuffer, * contentType: 'application/pdf', * onProgress: (event) => { * console.log(`${event.percentage}% uploaded`); * }, * }); * ``` */ export { uploadWithProgress } from './uploadWithProgress'; //# sourceMappingURL=index.d.ts.map