// ============================================================================ // Common Types // ============================================================================ export type LoadingState = "idle" | "loading" | "success" | "error"; export interface AsyncState { data: T | null; loading: boolean; error: string | null; } export interface PaginationParams { page?: number; limit?: number; } export interface SortParams { sort_by?: string; order?: "asc" | "desc"; }