mirror of
https://github.com/strapi/strapi.git
synced 2025-09-07 15:49:24 +00:00
Merge branch 'develop' into fix/transfer-pull
This commit is contained in:
commit
ae988dd79b
@ -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