Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 567 Bytes

BooleanValueNode.md

File metadata and controls

26 lines (16 loc) · 567 Bytes

BooleanValueNode

A node that represents a boolean value — e.g. true.

Attributes

Data

Attribute Type Description
kind "booleanValueNode" The node discriminator.
boolean boolean The boolean value.

Children

This node has no children.

Functions

booleanValueNode(items)

Helper function that creates a BooleanValueNode object from a boolean.

const node = booleanValueNode(true);