ออกคำสั่ง PreViewPDF

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-26 12:10:15 +07:00
parent 26a4bd17f2
commit 307bfc67c0
3 changed files with 119 additions and 11 deletions

View file

@ -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,
};