Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/openai/internal/qs/types.ts>ParseBaseOptions

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Latest
type alias ParseBaseOptions
import { type ParseBaseOptions } from "https://deno.land/x/openai@v4.64.0/internal/qs/types.ts";
definition: { comma?: boolean; delimiter?: string | RegExp; depth?: number | false; decoder?: (
str: string,
defaultDecoder: DefaultDecoder,
charset: string,
type: "key" | "value",
) => any; arrayLimit?: number; parseArrays?: boolean; plainObjects?: boolean; allowPrototypes?: boolean; allowSparse?: boolean; parameterLimit?: number; strictDepth?: boolean; strictNullHandling?: boolean; ignoreQueryPrefix?: boolean; charset?: "utf-8" | "iso-8859-1"; charsetSentinel?: boolean; interpretNumericEntities?: boolean; allowEmptyArrays?: boolean; duplicates?: "combine" | "first" | "last"; allowDots?: boolean; decodeDotInKeys?: boolean; }