@ayanaware/bento
Version:
Modular runtime framework designed to solve complex tasks
11 lines (10 loc) • 358 B
TypeScript
import type { Bento } from '../../Bento';
import type { Component } from '../interfaces/Component';
import { EntityAPI } from './EntityAPI';
/**
* The gateway of a component to the rest of the application.
* Each component gets one if loaded.
*/
export declare class ComponentAPI extends EntityAPI {
constructor(bento: Bento, component: Component);
}