UNPKG

@ayanaware/bento

Version:

Modular runtime framework designed to solve complex tasks

9 lines (8 loc) 200 B
import { EntityType } from '../entities/interfaces/Entity'; export interface BentoState { entities: Array<{ type: EntityType; name: string; }>; variables: Array<string>; }