UNPKG

@requestnetwork/multi-format

Version:
23 lines 893 B
import { MultiFormatTypes } from '@requestnetwork/types'; import { HexadecimalSerializableMultiFormat } from '../hexadecimal-serializable-multi-format'; /** * Class to serialize and deserialize multi-format AES-256-CBC encrypted data */ export declare class Keccak256MultiFormat extends HexadecimalSerializableMultiFormat { constructor(); /** * Checks if an object is a deserialized multi-format * * @param data object to check * @returns true if the data is a deserialized multi-format */ isSerializableObject(data: MultiFormatTypes.IMultiFormatDeserialized): boolean; /** * Checks if a string is a serialized multi-format * * @param formatted string to check * @returns true if the data is a serialized multi-format */ isDeserializableString(formatted: string): boolean; } //# sourceMappingURL=keccak256-format.d.ts.map