export interface Article { id?: string; projectId: string; parentMenuId: string; name: string; content: string; createdAt?: number; updatedAt?: number; isTop?: 1 | 2; } export interface Pageable { totalPages: number; totalElements: number; numberOfElements: number; size: number; number: number; content: T[]; first: boolean; last: boolean; } export declare type TCustomTopAction = 'up' | 'down'; export declare type TCustomMoveAction = 'top' | 'unTop'; export interface IUpdateArticleOrderParams { projectId: string; parentMenuId: string; move: TCustomTopAction | TCustomMoveAction; id: string; }