@endo/marshal
Version:
marshal: encoding and deconding of Passable subgraphs
12 lines • 299 B
TypeScript
/**
* @param {Passable} val
* @returns {string}
*/
export function stringify(val: Passable): string;
/**
* @param {string} str
* @returns {unknown}
*/
export function parse(str: string): unknown;
import type { Passable } from '@endo/pass-style';
//# sourceMappingURL=marshal-stringify.d.ts.map