8 lines
94 B
TypeScript
8 lines
94 B
TypeScript
/**
|
|
* 文件API类型声明
|
|
*/
|
|
export interface FileInfo {
|
|
name: string;
|
|
url: string;
|
|
}
|