7 lines
114 B
TypeScript
7 lines
114 B
TypeScript
interface ArrayFileList {
|
|
id: string;
|
|
pathName: string;
|
|
fileName: string;
|
|
}
|
|
|
|
export type { ArrayFileList };
|