lisk-framework
Version:
Lisk blockchain application platform
6 lines (5 loc) • 402 B
TypeScript
import { EndpointHandlers } from './types';
export declare const isReservedEndpointFunction: (key: string) => boolean;
export declare const getEndpointHandlers: (endpoint: Record<string, unknown>) => EndpointHandlers;
export declare const mergeEndpointHandlers: (...handlers: EndpointHandlers[]) => EndpointHandlers;
export declare const getEndpointPath: (namespace: string, method: string) => string;