You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
500 B
14 lines
500 B
import type { LanguageOrdering } from "./language/languageTypes";
|
|
import type { InteractOptions } from "./util/createInteractOptions";
|
|
import { createInteractOptions } from "./util/createInteractOptions";
|
|
|
|
/**
|
|
* Set the default language pr
|
|
* @param graphs The graphs that should be written to
|
|
* @returns a write builder
|
|
*/
|
|
export function setLanguagePreferences(
|
|
...languageOrdering: LanguageOrdering
|
|
): InteractOptions {
|
|
return createInteractOptions("languageOrdering", languageOrdering);
|
|
}
|
|
|