mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
15 lines
360 B
TypeScript
15 lines
360 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/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../base-x/base-x.d.ts" />
|
|
|
|
declare module "bs58" {
|
|
namespace base58 {}
|
|
|
|
let base58: BaseX.BaseConverter;
|
|
|
|
export = base58;
|
|
}
|