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

ThunkReadonlyArray

Used while defining GraphQL types to allow for circular references in otherwise immutable type definitions.

type ThunkReadonlyArray<T> = (() => ReadonlyArray<T>) | ReadonlyArray<T>;

§Type Parameters

§Type

§
(() => ReadonlyArray<T>) | ReadonlyArray<T>
[src]