1 | import type { CodecClass } from '@polkadot/types/types';
|
2 | import type { ApiBase } from '../base/index.js';
|
3 | import type { ApiInterfaceRx, ApiTypes } from '../types/index.js';
|
4 | import type { SubmittableExtrinsic } from './types.js';
|
5 | interface SubmittableOptions<ApiType extends ApiTypes> {
|
6 | api: ApiInterfaceRx;
|
7 | apiType: ApiTypes;
|
8 | blockHash?: Uint8Array | undefined;
|
9 | decorateMethod: ApiBase<ApiType>['_decorateMethod'];
|
10 | }
|
11 | export declare function createClass<ApiType extends ApiTypes>({ api, apiType, blockHash, decorateMethod }: SubmittableOptions<ApiType>): CodecClass<SubmittableExtrinsic<ApiType>>;
|
12 | export {};
|