UNPKG

functionalscript

Version:

FunctionalScript is a purely functional subset of JavaScript

6 lines (5 loc) 311 B
import { type Result } from '../../types/result/module.f.ts'; import { type List } from '../../types/list/module.f.ts'; import { type JsonToken } from '../tokenizer/module.f.ts'; import { type Unknown } from '../module.f.ts'; export declare const parse: (tokenList: List<JsonToken>) => Result<Unknown, string>;