@koralabs/kora-labs-common 5.1.5 → 5.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/handles/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { HandleType, IHandleMetadata, Rarity } from './interfaces';
|
|
2
|
+
import { IDrep } from './interfaces/api';
|
|
2
3
|
export declare const getRarity: (name: string) => Rarity;
|
|
3
4
|
export declare const buildCharacters: (name: string) => string;
|
|
4
5
|
export declare const buildNumericModifiers: (name: string) => string;
|
|
@@ -12,4 +13,4 @@ export declare const checkHandlePattern: (handle: string, root?: string) => {
|
|
|
12
13
|
valid: boolean;
|
|
13
14
|
message: string;
|
|
14
15
|
};
|
|
15
|
-
export declare const buildDrep: (address: string, id_hash?: string) =>
|
|
16
|
+
export declare const buildDrep: (address: string, id_hash?: string) => IDrep | undefined;
|