mirror of
https://github.com/strapi/strapi.git
synced 2025-12-27 07:03:38 +00:00
Merge branch 'fix/transfer-pull' of https://github.com/strapi/strapi into fix/transfer-pull
This commit is contained in:
commit
8694c2c798
@ -89,6 +89,7 @@ module.exports = ({ strapi }) => ({
|
||||
ext,
|
||||
mime: type,
|
||||
size: bytesToKbytes(size),
|
||||
sizeInBytes: size,
|
||||
};
|
||||
|
||||
const { refId, ref, field } = metas;
|
||||
|
||||
@ -27,6 +27,7 @@ export interface File {
|
||||
ext?: string;
|
||||
mime: string;
|
||||
size: number;
|
||||
sizeInBytes: number;
|
||||
url: string;
|
||||
previewUrl?: string;
|
||||
path?: string;
|
||||
|
||||
@ -14,6 +14,7 @@ interface File {
|
||||
ext?: string;
|
||||
mime: string;
|
||||
size: number;
|
||||
sizeInBytes: number;
|
||||
url: string;
|
||||
previewUrl?: string;
|
||||
path?: string;
|
||||
|
||||
@ -15,6 +15,7 @@ interface File {
|
||||
ext?: string;
|
||||
mime: string;
|
||||
size: number;
|
||||
sizeInBytes: number;
|
||||
url: string;
|
||||
previewUrl?: string;
|
||||
path?: string;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user