import { ParsedType } from "./ParsedType"; import { TypeEnum } from "./TypeEnum"; export interface ParsedObjectTypeItem { _type: TypeEnum.OBJECT_TYPE_ITEM; key: ParsedType; value: ParsedType; }