UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

6 lines (5 loc) 265 B
import type { AstNode } from '../types'; import type { ParserContext } from '../ParserContext'; type ImplicitBlockEnd = 'end' | 'else' | 'catch' | 'case'; export declare function parseImplicitBlock(ctx: ParserContext, ends: ImplicitBlockEnd[]): AstNode; export {};