Merge branch 'nice' into develop
This commit is contained in:
commit
6136295d31
4 changed files with 285 additions and 11 deletions
|
|
@ -32,4 +32,30 @@ interface DataCommandType {
|
|||
name: string;
|
||||
}
|
||||
|
||||
export type { ResListCommand, DataListCommand, DataCommandType };
|
||||
interface DataFileDownload {
|
||||
author: string;
|
||||
category: [];
|
||||
createdAt: string;
|
||||
createdBy: string;
|
||||
description: string;
|
||||
downloadUrl: string;
|
||||
fileName: string;
|
||||
fileSize: number;
|
||||
fileType: string;
|
||||
hidden: boolean;
|
||||
keyword: [];
|
||||
metadata: {};
|
||||
path: string;
|
||||
pathname: string;
|
||||
title: string;
|
||||
updatedAt: string;
|
||||
updatedBy: string;
|
||||
upload: boolean;
|
||||
}
|
||||
|
||||
export type {
|
||||
ResListCommand,
|
||||
DataListCommand,
|
||||
DataCommandType,
|
||||
DataFileDownload,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue