Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export AwsS3UploadParameters & AwsS3Options interfaces #3956

Merged
merged 1 commit into from Aug 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/@uppy/aws-s3/types/index.d.ts
Expand Up @@ -2,14 +2,14 @@ import type { PluginOptions, BasePlugin, UppyFile } from '@uppy/core'

type MaybePromise<T> = T | Promise<T>

interface AwsS3UploadParameters {
export interface AwsS3UploadParameters {
method?: string
url: string
fields?: { [type: string]: string }
headers?: { [type: string]: string }
}

interface AwsS3Options extends PluginOptions {
export interface AwsS3Options extends PluginOptions {
companionUrl?: string
getUploadParameters?: (file: UppyFile) => MaybePromise<AwsS3UploadParameters>
metaFields?: string[]
Expand Down