abi.js
Version:
[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]
11 lines (10 loc) • 605 B
TypeScript
export declare function parse_val(val: string): any;
export declare function parse_str(val: string): string;
export declare function parse_arr(val: string): any[];
export declare function parse_obj(val: string): Record<any, any>;
export declare function parse_params(val: string): Record<string, any>;
export declare function parse_args(val: string): Record<string, any>;
export declare function parse_props(val: string): Record<string, any>;
export declare function parse_prop(val: string): any;
export declare function parse_arg(val: string): any;
export declare function parse_param(val: string): any;