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

    Information about a stdlib module

    interface StdlibModuleInfo {
        accessCount: number;
        filePath?: string;
        inherits?: InheritanceInfo[];
        lastAccessed: number;
        line?: number;
        modulePath: string;
        resolvedPath?: string;
        sizeBytes: number;
        symbols?: Map<string, IntrospectedSymbol>;
    }
    Index

    Properties

    accessCount: number

    Access count

    filePath?: string

    Source file path without line number

    inherits?: InheritanceInfo[]

    Inheritance information

    lastAccessed: number

    Last access timestamp

    line?: number

    Line number within the file (0-based for LSP)

    modulePath: string

    Module path (e.g., "Stdio.File")

    resolvedPath?: string

    Source file path (may include line number suffix like "file.pike:42")

    sizeBytes: number

    Estimated size in bytes

    symbols?: Map<string, IntrospectedSymbol>

    Symbols in the module (lazy loaded)