rivo
Version:
🤖 The ultimate library you need for composable type-level programming in TypeScript, powered by HKT.
22 lines (19 loc) • 356 B
TypeScript
import type ToStrFn from "./ToStr";
/***********
* Methods *
***********/
/**
* Methods for `bigint`.
*/
export namespace BInt {
/**
* [Fn] Convert a bigint to a string.
*
* Sig: `(n: bigint) => string`
*/
export type ToStr = ToStrFn;
}
/****************
* Type classes *
****************/
export type { BInt$$Show } from "./Show";