UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

7 lines (6 loc) 470 B
import { type LitsFunction, type SpecialExpressionNode } from '../../parser/types'; import type { BuiltinSpecialExpression } from '../interface'; import type { Function } from '../utils'; import type { specialExpressionTypes } from '../specialExpressionTypes'; export type LambdaNode = SpecialExpressionNode<[typeof specialExpressionTypes['0_lambda'], Function, string]>; export declare const lambdaSpecialExpression: BuiltinSpecialExpression<LitsFunction, LambdaNode>;