mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-28 17:57:57 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* @name base32Validate
|
||||
* @summary Validates a base32 value.
|
||||
* @description
|
||||
* Validates that the supplied value is valid base32, throwing exceptions if not
|
||||
*/
|
||||
export declare const base32Validate: (value?: unknown, ipfsCompat?: boolean) => value is string;
|
||||
/**
|
||||
* @name isBase32
|
||||
* @description Checks if the input is in base32, returning true/false
|
||||
*/
|
||||
export declare const isBase32: (value?: unknown, ipfsCompat?: boolean) => value is string;
|
||||
/**
|
||||
* @name base32Decode
|
||||
* @summary Delookup a base32 value.
|
||||
* @description
|
||||
* From the provided input, decode the base32 and return the result as an `Uint8Array`.
|
||||
*/
|
||||
export declare const base32Decode: (value: string, ipfsCompat?: boolean) => Uint8Array;
|
||||
/**
|
||||
* @name base32Encode
|
||||
* @summary Creates a base32 value.
|
||||
* @description
|
||||
* From the provided input, create the base32 and return the result as a string.
|
||||
*/
|
||||
export declare const base32Encode: (value: import("@pezkuwi/util/types").U8aLike, ipfsCompat?: boolean) => string;
|
||||
Reference in New Issue
Block a user