export interface getCollectionArgs {
    id?: number;
    s?: string;
    ctype?: string;
    status?: string;
    per_page?: number;
    order?: string;
    orderby?: string;
    by_author?: number | null;
    by_category?: {
        key: string;
        value: string | number;
    };
    parent?: number;
}
