mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 07:57:59 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
import type { BN } from '../bn/bn.js';
|
||||
interface Compact<T> {
|
||||
toBigInt(): bigint;
|
||||
toBn(): BN;
|
||||
toNumber(): number;
|
||||
unwrap(): T;
|
||||
}
|
||||
/**
|
||||
* @name isCompact
|
||||
* @summary Tests for SCALE-Compact-like object instance.
|
||||
*/
|
||||
export declare const isCompact: <T>(value?: unknown) => value is Compact<T>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user