Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CodeGenNode

import type { CodeGenNode } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Represents a node in a directed acyclic graph (DAG)

interface CodeGenNode {
Id: string;
LineNumber?: number | null;
NodeType: string;
}

§Properties

§

Properties of the node, in the form of name-value pairs.

§
Id: string
[src]

A node identifier that is unique within the node's graph.

§
LineNumber?: number | null
[src]

The line number of the node.

§
NodeType: string
[src]

The type of node that this is.