From db3b97d9f06d48ab1b5c6fdd599714aea50f2950 Mon Sep 17 00:00:00 2001 From: Jared Wray Date: Wed, 4 Mar 2026 11:24:46 -0800 Subject: [PATCH] fix: better jsDoc on omitting the publicApiKey from toggle option --- src/hyphen.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hyphen.ts b/src/hyphen.ts index e517d70..c407faa 100644 --- a/src/hyphen.ts +++ b/src/hyphen.ts @@ -16,18 +16,21 @@ export type HyphenOptions = { apiKey?: string; /** * Options for the Toggle service. + * Excludes `publicApiKey` as it's provided at the top level. * @see ToggleOptions * @default {Toggle} */ toggle?: Omit; /** * Options for the NetInfo service. + * Excludes `apiKey` as it's provided at the top level. * @see NetInfoOptions * @default {NetInfo} */ netInfo?: Omit; /** * Options for the Link service. + * Excludes `apiKey` as it's provided at the top level. * @see LinkOptions * @default {Link} */