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

QueryValue

type QueryValue =
| string
| number
| undefined
| null
| boolean
| Array<QueryValue>
| Record<string, any>;

§Type

§
string | number | undefined | null | boolean | Array<QueryValue> | Record<string, any>
[src]