UNPKG

gatsby-plugin-s3

Version:

Enables you to deploy your gatsby site to a S3 bucket.

10 lines (9 loc) 260 B
#!/usr/bin/env node import '@babel/polyfill'; import 'fs-posix'; export interface DeployArguments { yes?: boolean; bucket?: string; userAgent?: string; } export declare const deploy: ({ yes, bucket, userAgent }?: DeployArguments) => Promise<void>;