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

    Interface CircularCheckResult

    Circular dependency check result

    interface CircularCheckResult {
        cycle: string[];
        dependencies: string[];
        has_circular: 0 | 1;
    }
    Index

    Properties

    cycle: string[]

    The cycle path (if circular)

    dependencies: string[]

    All dependencies found

    has_circular: 0 | 1

    Whether a circular dependency exists (0 = no, 1 = yes)