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.
