UNPKG

@polkadot/api-base

Version:

Interfaces for interacting with contracts and contract ABIs

5 lines (4 loc) 225 B
import type { Observable } from 'rxjs'; type DeriveCreator = (instanceId: string, api: unknown) => (...args: unknown[]) => Observable<any>; export type DeriveCustom = Record<string, Record<string, DeriveCreator>>; export {};