matrix-builder / web /src /hooks /useBundleDownload.ts
ruslanmv
Deploy: metrics + docs (Batch 12)
22b729d
Raw
History Blame Contribute Delete
155 Bytes
export function useBundleDownload() {
return { status: "ready", downloadPath: (bundleId: string) => `/api/v1/bundles/${bundleId}/download` } as const;
}