@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
12 lines • 690 B
TypeScript
import type { Serializable } from '../common/types';
import type { BaseTx } from './baseTx';
import type { CreateAssetTx } from './createAssetTx';
import type { ExportTx } from './exportTx';
import type { ImportTx } from './importTx';
import type { OperationTx } from './operationTx';
export declare function isAvmBaseTx(tx: Serializable): tx is BaseTx;
export declare function isExportTx(tx: Serializable): tx is ExportTx;
export declare function isImportTx(tx: Serializable): tx is ImportTx;
export declare function isCreateAssetTx(tx: Serializable): tx is CreateAssetTx;
export declare function isOperationTx(tx: Serializable): tx is OperationTx;
//# sourceMappingURL=typeGuards.d.ts.map