rivo
Version:
🤖 The ultimate library you need for composable type-level programming in TypeScript, powered by HKT.
17 lines (14 loc) • 412 B
TypeScript
import type ToStrFn from "./ToStr";
// @ts-ignore - `Show` is only used in doc comments
import type { Show, TypeClass$$Show } from "../typeclass";
declare module "../typeclass/Show" {
interface ShowImpl {
bigint: ImplShowFor<bigint, BInt$$Show>;
}
}
/**
* Implementation of the {@link Show} type class for `bigint`.
*/
export interface BInt$$Show extends TypeClass$$Show<bigint> {
Show: ToStrFn;
}