KC's Workspace
    Preparing search index...
    interface CallChain {
        _declarationBrand: any;
        _expressionBrand: any;
        _leftHandSideExpressionBrand: any;
        _optionalChainBrand: any;
        _unaryExpressionBrand: any;
        _updateExpressionBrand: any;
        arguments: NodeArray<Expression>;
        end: number;
        expression: LeftHandSideExpression;
        flags: NodeFlags;
        kind: CallExpression;
        parent: Node;
        pos: number;
        questionDotToken?: QuestionDotToken;
        typeArguments?: NodeArray<TypeNode>;
        forEachChild<T>(
            cbNode: (node: Node) => T | undefined,
            cbNodeArray?: (nodes: NodeArray<Node>) => T | undefined,
        ): T | undefined;
        getChildAt(index: number, sourceFile?: SourceFile): Node;
        getChildCount(sourceFile?: SourceFile): number;
        getChildren(sourceFile?: SourceFile): readonly Node[];
        getEnd(): number;
        getFirstToken(sourceFile?: SourceFile): Node | undefined;
        getFullStart(): number;
        getFullText(sourceFile?: SourceFile): string;
        getFullWidth(): number;
        getLastToken(sourceFile?: SourceFile): Node | undefined;
        getLeadingTriviaWidth(sourceFile?: SourceFile): number;
        getSourceFile(): SourceFile;
        getStart(sourceFile?: SourceFile, includeJsDocComment?: boolean): number;
        getText(sourceFile?: SourceFile): string;
        getWidth(sourceFile?: SourceFileLike): number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _declarationBrand: any
    _expressionBrand: any
    _leftHandSideExpressionBrand: any
    _optionalChainBrand: any
    _unaryExpressionBrand: any
    _updateExpressionBrand: any
    arguments: NodeArray<Expression>
    end: number
    flags: NodeFlags
    parent: Node
    pos: number
    questionDotToken?: QuestionDotToken
    typeArguments?: NodeArray<TypeNode>

    Methods

    • Type Parameters

      • T

      Parameters

      • cbNode: (node: Node) => T | undefined
      • OptionalcbNodeArray: (nodes: NodeArray<Node>) => T | undefined

      Returns T | undefined