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";