UNPKG

@storm-software/cloudflare-tools

Version:

A Nx plugin package that contains various executors, generators, and utilities that assist in managing Cloudflare services.

8 lines (5 loc) 471 B
import { S3 } from '@aws-sdk/client-s3'; import { ProjectGraph, ProjectGraphProjectNode } from '@nx/devkit'; declare const r2UploadFile: (client: S3, bucketName: string, projectPath: string, fileName: string, version: string, fileContent: string, contentType?: string, isDryRun?: boolean) => Promise<void>; declare const getInternalDependencies: (projectName: string, graph: ProjectGraph) => ProjectGraphProjectNode[]; export { getInternalDependencies, r2UploadFile };