UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

5 lines (4 loc) 246 B
import type { StringNode } from '../types'; import type { StringToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseString(ctx: ParserContext, token: StringToken): StringNode;