UNPKG

@junobuild/cli-tools

Version:

A collection of tools for Juno CLIs and Plugins.

6 lines (5 loc) 290 B
import type { UploadIndividually, UploadWithBatch } from '../types/deploy'; import type { UploadFilesParams } from '../types/upload'; export declare const uploadFiles: ({ upload, files, ...rest }: UploadFilesParams & { upload: UploadIndividually | UploadWithBatch; }) => Promise<void>;