@agentix-e/spel-ts - v1.2.2
    Preparing search index...

    Interface ContextSchema

    Top-level context schema describing all available entities

    interface ContextSchema {
        beans: Record<string, BeanSchema>;
        functions: Record<string, FunctionSchema>;
        root: RootObjectSchema | null;
        types: Record<string, TypeSchema>;
        variables: Record<string, VariableSchema>;
    }
    Index
    beans: Record<string, BeanSchema>

    Bean declarations accessible via

    or &@factory

    functions: Record<string, FunctionSchema>

    Function declarations accessible via #functionName(args)

    root: RootObjectSchema | null

    Root object metadata (accessible as #root or #rootName)

    types: Record<string, TypeSchema>

    Type declarations accessible via T(TypeName)

    variables: Record<string, VariableSchema>

    Variable declarations accessible via #varName