File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/core/storage-js/src/packages Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ export default class StorageFileApi {
638638 options ?: { download ?: string | boolean ; transform ?: TransformOptions }
639639 ) : { data : { publicUrl : string } } {
640640 const _path = this . _getFinalPath ( path )
641- const _queryString = [ ]
641+ const _queryString : string [ ] = [ ]
642642
643643 const downloadQueryParam = options ?. download
644644 ? `download=${ options . download === true ? '' : options . download } `
@@ -865,7 +865,7 @@ export default class StorageFileApi {
865865 }
866866
867867 private transformOptsToQueryString ( transform : TransformOptions ) {
868- const params = [ ]
868+ const params : string [ ] = [ ]
869869 if ( transform . width ) {
870870 params . push ( `width=${ transform . width } ` )
871871 }
You can’t perform that action at this time.
0 commit comments