We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1496e3 commit 1525850Copy full SHA for 1525850
fluent-langneg/src/index.ts
@@ -7,6 +7,6 @@
7
*
8
*/
9
10
-export {negotiateLanguages} from "./negotiate_languages";
+export {negotiateLanguages, NegotiateLanguagesOptions} from "./negotiate_languages";
11
export {acceptedLanguages} from "./accepted_languages";
12
export {filterMatches} from "./matches";
fluent-langneg/src/negotiate_languages.ts
@@ -1,6 +1,6 @@
1
import {filterMatches} from "./matches";
2
3
-interface NegotiateLanguagesOptions {
+export interface NegotiateLanguagesOptions {
4
strategy?: "filtering" | "matching" | "lookup";
5
defaultLocale?: string;
6
}
0 commit comments