Docs

ThirdwebStorageOptions

type ThirdwebStorageOptions<T extends UploadOptions> = {
  clientId?: string;
  downloader?: IStorageDownloader;
  gatewayUrls?: GatewayUrls | string[];
  secretKey?: string;
  uploadServerUrl?: string;
  uploader?: IStorageUploader<T>;
};