mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
14 lines
250 B
Go
14 lines
250 B
Go
export declare global {
|
|
interface Export {
|
|
id?: string;
|
|
type?: ExportType;
|
|
target?: string;
|
|
// filter?: any;
|
|
status?: string;
|
|
start_ts?: string;
|
|
end_ts?: string;
|
|
file_name?: string;
|
|
download_path?: string;
|
|
}
|
|
}
|