interface FunctionElementInSource {
    arguments: Expression[];
    comments?: string[];
    kind: "function";
    lineNumber: number;
    name: string;
    node: Node;
    source: SourceFile;
}

Properties

arguments: Expression[]
comments?: string[]
kind: "function"
lineNumber: number
name: string
node: Node
source: SourceFile