file download component
This commit is contained in:
parent
2189a3d33b
commit
9d81666a3c
14 changed files with 75 additions and 20 deletions
|
@ -1,4 +1,4 @@
|
|||
import type BaseImage from "../component/baseImage";
|
||||
import type BaseFile from "../component/baseFile";
|
||||
import type BaseCollection from "./baseCollection";
|
||||
|
||||
export default interface Article extends BaseCollection {}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type BaseImage from "../component/baseImage";
|
||||
import type BaseFile from "../component/baseFile";
|
||||
import type ContentField from "../field/content";
|
||||
|
||||
export default interface BaseCollection {
|
||||
|
@ -14,6 +14,6 @@ export default interface BaseCollection {
|
|||
description: string;
|
||||
date: string | undefined;
|
||||
content: ContentField | undefined;
|
||||
image: BaseImage | undefined;
|
||||
attachment: Array<BaseImage>;
|
||||
image: BaseFile | undefined;
|
||||
attachment: Array<BaseFile>;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type BaseImage from "../component/baseImage";
|
||||
import type BaseFile from "../component/baseFile";
|
||||
import type BaseCollection from "./baseCollection";
|
||||
|
||||
export default interface Vehicle extends BaseCollection {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue