mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +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.
31 lines
665 B
Go
31 lines
665 B
Go
export declare global {
|
|
interface BaseModel {
|
|
_id?: string;
|
|
created_at?: string;
|
|
created_by?: string;
|
|
updated_at?: string;
|
|
updated_at?: string;
|
|
|
|
[field: string]: any;
|
|
}
|
|
}
|
|
|
|
export * from './dataCollection';
|
|
export * from './git';
|
|
export * from './node';
|
|
export * from './plugin';
|
|
export * from './project';
|
|
export * from './result';
|
|
export * from './setting';
|
|
export * from './spider';
|
|
export * from './stats';
|
|
export * from './systemInfo';
|
|
export * from './tag';
|
|
export * from './token';
|
|
export * from './metric';
|
|
export * from './range';
|
|
export * from './nav';
|
|
export * from './map';
|
|
export * from './treeNode';
|
|
export * from './user';
|