import { KeyContext } from '../key.interface'; export interface CreateObjectEntity { name: string; value: string; key_context: KeyContext; } export interface CreateObjectOptions { name: string; value: string; context: KeyContext; }