UNPKG

twing

Version:

First-class Twig engine for Node.js

6 lines (5 loc) 380 B
import { TwingBaseConditionalNode } from "./conditional"; import { TwingExpressionNode } from "../expression"; export interface TwingNullishCoalescingNode extends TwingBaseConditionalNode<"nullish_coalescing"> { } export declare const createNullishCoalescingNode: (operands: [TwingExpressionNode, TwingExpressionNode], line: number, column: number) => TwingNullishCoalescingNode;