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