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.
locale
1 parent 19ba74a commit 8a678e9Copy full SHA for 8a678e9
src/operations/command.ts
@@ -16,13 +16,14 @@ const SUPPORTS_WRITE_CONCERN_AND_COLLATION = 5;
16
/** @public */
17
export interface CollationOptions {
18
locale: string;
19
- caseLevel: boolean;
20
- caseFirst: string;
21
- strength: number;
22
- numericOrdering: boolean;
23
- alternate: string;
24
- maxVariable: string;
25
- backwards: boolean;
+ caseLevel?: boolean;
+ caseFirst?: string;
+ strength?: number;
+ numericOrdering?: boolean;
+ alternate?: string;
+ maxVariable?: string;
+ backwards?: boolean;
26
+ normalization?: boolean;
27
}
28
29
0 commit comments