8 lines
226 B
TypeScript
8 lines
226 B
TypeScript
|
import { Types as T } from "@lingdocs/ps-react";
|
||
|
import {
|
||
|
State,
|
||
|
} from "../types/dictionary-types";
|
||
|
|
||
|
export function getTextOptions(state: State): T.TextOptions {
|
||
|
return state.options.textOptionsRecord.textOptions;
|
||
|
}
|