Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Showable

import type { Showable } from "https://raw.githubusercontent.com/baetheus/fun/main/showable.ts";

A Showable structure has the method show.

interface Showable <U> extends Hold<U> {
readonly show: (value: U) => string;
}

§Type Parameters

§Extends

§Properties

§
readonly show: (value: U) => string
[src]