UNPKG

@junobuild/cli-tools

Version:

A collection of tools for Juno CLIs and Plugins.

9 lines (8 loc) 451 B
import { type COLLECTION_CDN_RELEASES, type COLLECTION_DAPP } from '../constants/deploy.constants'; import type { FileAndPaths, UploadFile } from '../types/deploy'; export declare const uploadFiles: ({ files: sourceFiles, uploadFile, sourceAbsolutePath, collection }: { files: FileAndPaths[]; uploadFile: UploadFile; sourceAbsolutePath: string; collection: typeof COLLECTION_DAPP | typeof COLLECTION_CDN_RELEASES; }) => Promise<void>;