UNPKG

483 BTypeScriptView Raw
1import type { Registry } from '@polkadot/types-codec/types';
2import type { ExtrinsicPayloadOptions } from './types';
3import { Struct } from '@polkadot/types-codec';
4/**
5 * @name GenericExtrinsicPayloadUnknown
6 * @description
7 * A default handler for payloads where the version is not known (default throw)
8 */
9export declare class GenericExtrinsicPayloadUnknown extends Struct {
10 constructor(registry: Registry, value?: unknown, { version }?: Partial<ExtrinsicPayloadOptions>);
11}