mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-25 17:42:25 +01:00
- Updated timestamp fields across the codebase from `*_ts` to `*_at` for consistency and clarity. - Renamed constants for node status from "on"/"off" to "online"/"offline" to better reflect their meanings. - Enhanced validation and error handling in various components to ensure data integrity. - Refactored test cases to align with the new naming conventions and improve readability.
14 lines
254 B
Go
14 lines
254 B
Go
export declare global {
|
|
interface Export {
|
|
id?: string;
|
|
type?: ExportType;
|
|
target?: string;
|
|
// filter?: any;
|
|
status?: string;
|
|
started_at?: string;
|
|
ended_at?: string;
|
|
file_name?: string;
|
|
download_path?: string;
|
|
}
|
|
}
|