19 lines
420 B
TypeScript
19 lines
420 B
TypeScript
/**
|
|
* Copyright (c) 2021 lingdocs.com
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
import { TextOptions } from "../types";
|
|
|
|
const defualtTextOptions: TextOptions = {
|
|
pTextSize: "normal",
|
|
spelling: "Afghan",
|
|
diacritics: false,
|
|
dialect: "standard",
|
|
phonetics: "lingdocs",
|
|
}
|
|
|
|
export default defualtTextOptions; |