保存进度

This commit is contained in:
2025-11-19 01:13:28 +08:00
parent e73ce4b4b0
commit c9c2493671

View File

@@ -14,13 +14,14 @@ interface RegulatoryData {
release_year: string; release_year: string;
regulatory_name: string; regulatory_name: string;
comment: string; comment: string;
regulatory_files: null | RegulatoryFile[] regulatory_files: null | RegulatoryFile[];
} }
interface RegulatoryFile { interface RegulatoryFile {
regulatory_file_name: string; regulatory_file_name: string;
file_url: string; file_url: string;
file_type: string local_file_path: null | string;
file_type: string;
} }
export { type RegulatoryData, type RegulatoryFile }; export { type RegulatoryData, type RegulatoryFile };