UNPKG

@spaceone/design-system

Version:
27 lines (23 loc) 723 B
import { GridLayoutProps } from '@/others/deprecated/grid-layout/type'; import { KeyItemSet, ValueHandlerMap } from '@/inputs/search/query-search/type'; import { QueryTag } from '@/inputs/search/query-search-tags/type'; export interface SearchGridLayoutProps extends GridLayoutProps { items: any[]; totalCount: number; paginationValues?: number[]; pageSize: number; thisPage: number; cardMinWidth?: string; cardHeight?: string; loading: boolean; keyItemSets: KeyItemSet[]; valueHandlerMap: ValueHandlerMap; queryTags?: QueryTag[]; } export interface Options { sortBy: string; sortDesc: boolean; thisPage: number; pageSize: number; queryTags: QueryTag[]; }