@nervosnetwork/ckb-sdk-utils
Version:
Utils module of @nervosnetwork/ckb-sdk-core
15 lines (14 loc) • 441 B
TypeScript
import ErrorCode from './ErrorCode.js';
export declare class HexStringException extends Error {
code: ErrorCode;
constructor(hex: string);
}
export declare class HexStringWithout0xException extends Error {
code: ErrorCode;
constructor(hex: string);
}
declare const _default: {
HexStringException: typeof HexStringException;
HexStringWithout0xException: typeof HexStringWithout0xException;
};
export default _default;