Files
crawlab/frontend/crawlab-ui/typings/interfaces/models/index.d.ts
Marvin Zhang 4f57d277e7 refactor: standardize timestamp fields and improve code clarity
- 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.
2025-04-21 18:13:22 +08:00

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';