Interface FunctionDeclarationNode<T>

Syntax node representing a function declaration.

interface FunctionDeclarationNode<T> {
    name?: string;
    type: FunctionDeclaration;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

Properties

name?: string

A descriptive name for the syntax node.

The type of the syntax node.