@decaf-ts/fabric-weaver
Version:
template for ts projects
6 lines (5 loc) • 348 B
TypeScript
export declare function safeParseJSON(v: string): unknown;
export declare function safeParseInt(v: string | number): number;
export declare function safeParseCSV(csv: string): string[];
export declare function safeParseSSV(csv: string): string[];
export declare function mapParser(map: Map<string, string | number | boolean | string[]>): string[];