UNPKG

@plurid/plurid-functions

Version:
5 lines (4 loc) 301 B
import { PossibleDataString } from "../../data/interfaces"; export declare const parse: <T = any>(value: PossibleDataString) => T | undefined; export declare const parseFromString: <T = any>(value: string) => string | T; export declare const stringifyOrDefault: (data: any) => string | undefined;