UNPKG

near-protocol-rewards

Version:

A transparent, metric-based rewards system for NEAR projects

10 lines (9 loc) 311 B
export type JSONValue = string | number | boolean | null | { [key: string]: JSONValue; } | JSONValue[] | Record<string, unknown>; export interface ErrorDetail { message: string; code: string; context?: Record<string, JSONValue>; } export declare function toJSONValue(value: unknown): JSONValue;