7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { IItems } from "../../interfaces/items.interface";
|
|
|
|
export interface IDataItem{
|
|
category?: string;
|
|
categoryItems?: string;
|
|
ItemValue: string | IItems | number;
|
|
} |