UNPKG

@qualifyze/airtable-formulator

Version:
8 lines (7 loc) 275 B
import { Node } from "./node"; declare const unaryOperators: readonly ["-"]; export interface UnaryOperator extends Node<"operator"> { readonly value: typeof unaryOperators[number]; } export declare function isUnaryOperator(node: Node): node is UnaryOperator; export {};