import { SKELETON_ITEM_TYPE } from './../../common/interfaces/ui'; export interface GritSkeletonItemModel { type: SKELETON_ITEM_TYPE; isAnimated: boolean; shape?: skeletonItemShape; } export interface skeletonItemShape { borderRadius: string; height: string; width: string; }