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

Initializable

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

A Initializable structure has the method init.

interface Initializable <A> extends Combinable<A> {
readonly init: () => A;
}

§Type Parameters

§Extends

§Properties

§
readonly init: () => A
[src]