UNPKG

functionalscript

Version:

FunctionalScript is a purely functional subset of JavaScript

8 lines (7 loc) 459 B
import { type List } from '../../types/list/module.f.ts'; export declare const stringSerialize: (_: string) => List<string>; export declare const numberSerialize: (_: number) => List<string>; export declare const nullSerialize: string[]; export declare const boolSerialize: (_: boolean) => List<string>; export declare const objectWrap: (input: List<List<string>>) => List<string>; export declare const arrayWrap: (input: List<List<string>>) => List<string>;