@supabase/storage-js 2.81.0 → 2.81.1-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -638,7 +638,7 @@ export default class StorageFileApi {
638
638
  options?: { download?: string | boolean; transform?: TransformOptions }
639
639
  ): { data: { publicUrl: string } } {
640
640
  const _path = this._getFinalPath(path)
641
- const _queryString = []
641
+ const _queryString: string[] = []
642
642
 
643
643
  const downloadQueryParam = options?.download
644
644
  ? `download=${options.download === true ? '' : options.download}`
@@ -865,7 +865,7 @@ export default class StorageFileApi {
865
865
  }
866
866
 
867
867
  private transformOptsToQueryString(transform: TransformOptions) {
868
- const params = []
868
+ const params: string[] = []
869
869
  if (transform.width) {
870
870
  params.push(`width=${transform.width}`)
871
871
  }