import { IkasBlog } from "../blog"; import { IBlueprintBlogListPropValue } from "../blueprint/prop-value"; export type IkasBlogList = { data: IkasBlog[]; type: IkasBlogListType; limit: number; page: number; count: number; minPage?: number | null; blogListPropValue: IBlueprintBlogListPropValue; filterCategoryId: string | null; isLoading: boolean; isInitialized: boolean; }; export type IkasBlogListType = "ALL" | "STATIC" | "CATEGORY";