UNPKG

rivo

Version:

🤖 The ultimate library you need for composable type-level programming in TypeScript, powered by HKT.

13 lines (10 loc) • 277 B
import type ToStrFn from "./ToStr"; import type { TypeClass$$Show } from "../typeclass"; declare module "../typeclass/Show" { interface ShowImpl { null: ImplShowFor<null, Null$$Show>; } } export interface Null$$Show extends TypeClass$$Show<null> { Show: ToStrFn; }