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

OrderByDirection

The direction of a orderBy clause is specified as 'desc' or 'asc' (descending or ascending).

type OrderByDirection = "desc" | "asc";

§Type

§
"desc" | "asc"
[src]