type StringCollationConfig =
| {
stringSort?: "lexical";
}
| {
locale?: string;
localeOptions?: object;
stringSort?: "locale";
};
type StringCollationConfig =
| {
stringSort?: "lexical";
}
| {
locale?: string;
localeOptions?: object;
stringSort?: "locale";
};
Defined in: packages/db/src/types.ts:29
StringSortOpts - Options for string sorting behavior
This discriminated union allows for two types of string sorting:
The union ensures that locale options are only available when locale sorting is selected.
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.
