From f6a79bb7977e0da4298c9a5dcf99531561cd95c9 Mon Sep 17 00:00:00 2001 From: Minh Anh Date: Tue, 10 Dec 2024 15:22:59 -0800 Subject: [PATCH] undo quotation change --- src/core.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core.ts b/src/core.ts index 0a8d21453..b17a9395b 100644 --- a/src/core.ts +++ b/src/core.ts @@ -130,7 +130,7 @@ export class APIPromise extends Promise> { * instance, you can use {@link withResponse()}. * * 👋 Getting the wrong TypeScript type for `Response`? - * Try setting `'moduleResolution': 'NodeNext'` if you can, + * Try setting `"moduleResolution": "NodeNext"` if you can, * or add one of these imports before your first `import … from 'openai'`: * - `import 'openai/shims/node'` (if you're running on Node) * - `import 'openai/shims/web'` (otherwise) @@ -149,7 +149,7 @@ export class APIPromise extends Promise> { * * * 👋 Getting the wrong TypeScript type for `Response`? - * Try setting `'moduleResolution': 'NodeNext'` if you can, + * Try setting `"moduleResolution": "NodeNext"` if you can, * or add one of these imports before your first `import … from 'openai'`: * - `import 'openai/shims/node'` (if you're running on Node) * - `import 'openai/shims/web'` (otherwise) @@ -1117,7 +1117,7 @@ export function hasOwn(obj: Object, key: string): boolean { } /** - * Copies headers from 'newHeaders' onto 'targetHeaders', + * Copies headers from "newHeaders" onto "targetHeaders", * using lower-case for all properties, * ignoring any keys with undefined values, * and deleting any keys with null values.