mirror of
https://github.com/fumiama/paper-manager.git
synced 2026-06-09 02:01:31 +08:00
20 lines
334 B
TypeScript
20 lines
334 B
TypeScript
export interface FileListGroupItem {
|
|
id: number
|
|
title: string
|
|
description: string
|
|
size: number
|
|
questions: number
|
|
author: string
|
|
datetime: string
|
|
percent: number
|
|
}
|
|
|
|
/**
|
|
* @description: Get filelist return value
|
|
*/
|
|
export type getFileListModel = FileListGroupItem[]
|
|
|
|
export interface FilePercent {
|
|
percent: number
|
|
}
|