UNPKG

scilla-data-parser

Version:

Scilla data types can be very verbose, making it hard for developers to use the state directly. The parser will help developers can make references and manipulation to state more easily.

12 lines (11 loc) 528 B
declare function convertToSimpleJson(input: any, bStraight?: boolean): any; declare function convertToScillaData(node: any): any; declare function convertToScillaDataList(input: any): any; declare function fetchCustomData(name: any, rule: any): any; export declare const ScillaDataParser: { convertToSimpleJson: typeof convertToSimpleJson; convertToScillaData: typeof convertToScillaData; convertToScillaDataList: typeof convertToScillaDataList; fetchCustomData: typeof fetchCustomData; }; export {};