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