UNPKG

@bit-ui-libs/common

Version:
18 lines (16 loc) 403 B
import { CategoryStatusEnum } from '../constants'; import { AssetType } from './asset-template'; export interface AssetCategory { id: string; name: string; description: string; parentId: string | null; appName: string; isFinal: boolean; imageUrl: string | null; types?: AssetType[]; createdAt?: string; updatedAt?: string; deletedAt: string | null; state: CategoryStatusEnum; }