Pike LSP TypeScript API - v0.1.0-alpha.20
    Preparing search index...

    Interface StdlibResolveResult

    Result of resolving a stdlib module

    interface StdlibResolveResult {
        classes?: IntrospectedSymbol[];
        error?: string;
        found: number;
        functions?: IntrospectedSymbol[];
        inherits?: InheritanceInfo[];
        module?: string;
        path?: string;
        symbols?: IntrospectedSymbol[];
        variables?: IntrospectedSymbol[];
    }
    Index

    Properties

    classes?: IntrospectedSymbol[]

    Classes in the module

    error?: string

    Error message if not found

    found: number

    Whether module was found

    functions?: IntrospectedSymbol[]

    Functions in the module

    inherits?: InheritanceInfo[]

    Inheritance information

    module?: string

    Module path that was resolved

    path?: string

    Path to module source

    symbols?: IntrospectedSymbol[]

    Symbols in the module

    variables?: IntrospectedSymbol[]

    Variables in the module