import type { Show } from "@principia/prelude/Show"; import type { Const } from "./model"; /* * ------------------------------------------- * Show Const * ------------------------------------------- */ /** * @category Show * @since 1.0.0 */ export const getShow = (S: Show): Show> => ({ show: (c) => `make(${S.show(c)})` });