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

Generated

import type { Generated } from "https://raw.githubusercontent.com/EthanThatOneKid/codemod/main/github/shared/generate.ts";

Generated infers the type of a generated value.

type Generated<T> = T extends Generate<infer U, unknown[]> ? U : never;

§Type Parameters

§Type

§
T extends Generate<infer U, unknown[]> ? U : never
[src]