import { BaseObjectInterface } from '../utils/baseObject'; export interface TagInterface extends BaseObjectInterface { name: string; value: string; }