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

Static

Creates a static type from a TypeBox type

type Static<T extends TSchema, P extends unknown[] = []> = (T & {
params: P;
}
)
["static"]
;

§Type Parameters

§
T extends TSchema
[src]
§
P extends unknown[] = []
[src]

§Type

§
(T & {
params: P;
}
)
["static"]
[src]