Represents the configuration options for translation.

interface ITranslateConfig {
    rawCondition: (text: string) => boolean;
    rawSymbol: string;
    useRawMark: boolean;
}

Properties

rawCondition: (text: string) => boolean
rawSymbol: string
useRawMark: boolean