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 @@ -625,7 +625,7 @@ export default class StorageFileApi {
625
625
options ?: { download ?: string | boolean ; transform ?: TransformOptions }
626
626
) : { data : { publicUrl : string } } {
627
627
const _path = this . _getFinalPath ( path )
628
- const _queryString = [ ]
628
+ const _queryString : string [ ] = [ ]
629
629
630
630
const downloadQueryParam = options ?. download
631
631
? `download=${ options . download === true ? '' : options . download } `
@@ -852,7 +852,7 @@ export default class StorageFileApi {
852
852
}
853
853
854
854
private transformOptsToQueryString ( transform : TransformOptions ) {
855
- const params = [ ]
855
+ const params : string [ ] = [ ]
856
856
if ( transform . width ) {
857
857
params . push ( `width=${ transform . width } ` )
858
858
}
You can’t perform that action at this time.
0 commit comments