@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
8 lines • 507 B
TypeScript
import type { BaseTx } from './baseTx';
import type { Serializable } from '../common/types';
import type { TransferableOutput } from './transferableOutput';
import type { TransferableInput } from './transferableInput';
export declare function isBaseTx(tx: Serializable): tx is BaseTx;
export declare function isTransferableOutput(out: Serializable): out is TransferableOutput;
export declare function isTransferableInput(out: Serializable): out is TransferableInput;
//# sourceMappingURL=typeGuards.d.ts.map