UNPKG

agentscape

Version:

Agentscape is a library for creating agent-based simulations. It provides a simple API for defining agents and their behavior, and for defining the environment in which the agents interact. Agentscape is designed to be flexible and extensible, allowing

15 lines (14 loc) 357 B
import { Cell } from '../../entities'; export interface InspectorConstructor { root: HTMLDivElement; fetchCell: (position: [number, number]) => Cell; title?: string; id?: string; height?: number; } export default class Inspector { title: string; id: string; private contentRef; constructor(opts: InspectorConstructor); }