Initial commit: KidsAI Explorer with complete functionality
- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
This commit is contained in:
20
node_modules/openai/internal/headers.d.ts
generated
vendored
Normal file
20
node_modules/openai/internal/headers.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
type HeaderValue = string | undefined | null;
|
||||
export type HeadersLike = Headers | readonly HeaderValue[][] | Record<string, HeaderValue | readonly HeaderValue[]> | undefined | null | NullableHeaders;
|
||||
declare const brand_privateNullableHeaders: unique symbol;
|
||||
/**
|
||||
* @internal
|
||||
* Users can pass explicit nulls to unset default headers. When we parse them
|
||||
* into a standard headers type we need to preserve that information.
|
||||
*/
|
||||
export type NullableHeaders = {
|
||||
/** Brand check, prevent users from creating a NullableHeaders. */
|
||||
[brand_privateNullableHeaders]: true;
|
||||
/** Parsed headers. */
|
||||
values: Headers;
|
||||
/** Set of lowercase header names explicitly set to null. */
|
||||
nulls: Set<string>;
|
||||
};
|
||||
export declare const buildHeaders: (newHeaders: HeadersLike[]) => NullableHeaders;
|
||||
export declare const isEmptyHeaders: (headers: HeadersLike) => boolean;
|
||||
export {};
|
||||
//# sourceMappingURL=headers.d.ts.map
|
||||
Reference in New Issue
Block a user