@dappykit/sdk
Version:
Web3 SDK for DApps
11 lines (10 loc) • 439 B
TypeScript
import { AppParams } from './interface';
export declare const USER_PREFIX_PATH = "user";
/**
* Parses the given data and returns the parsed app parameters.
*
* @param {string} data - The input data to be parsed.
* @return {AppParams} The parsed app parameters.
* @throws {Error} If the version is missing or has an invalid format, or if the parameters are invalid.
*/
export declare function parseAppParams(data: string): AppParams;