UNPKG

concept-lang

Version:

A semantic network system for defining concepts, relationships, and building knowledge graphs with automatic inference

23 lines 694 B
import { HookMap } from '../../types'; import { ConceptPlugin } from '../../types/plugin'; import { Block } from '../../core/block'; /** * Standard library plugin for common Concept language functionality */ export declare const createStdPlugin: (getBlock: () => Block) => HookMap; /** * Standard library plugin implementation */ export declare class StdPlugin implements ConceptPlugin { readonly config: { name: string; version: string; description: string; main: string; }; initialize(): Promise<void>; registerListeners(): Map<any, any>; getHooks(block?: Block): HookMap; } export default StdPlugin; //# sourceMappingURL=index.d.ts.map