UNPKG

@chainlink/functions-toolkit

Version:

An NPM package with collection of functions that can be used for working with Chainlink Functions.

4 lines (3 loc) 194 B
import { ReturnType } from './types'; export type DecodedResult = bigint | string; export declare const decodeResult: (resultHexstring: string, expectedReturnType: ReturnType) => DecodedResult;