mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
// Type definitions for bs58 3.0.0
|
|
// Project: https://github.com/cryptocoinjs/bs58
|
|
// Definitions by: Ilya Mochalov <https://github.com/chrootsu>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="base-x" />
|
|
|
|
import * as BaseX from 'base-x';
|
|
|
|
declare namespace base58 { }
|
|
|
|
declare let base58: BaseX.BaseConverter;
|
|
|
|
export = base58;
|