Interface ABISerializableObject

Interface that should be implemented by ABI serializable objects.

interface ABISerializableObject {
    equals(other): boolean;
    toABI?(encoder): void;
    toJSON(): any;
}

Implemented by

Methods

  • Return true if the object equals the other object passed.

    Parameters

    • other: any

    Returns boolean