devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
39 lines (38 loc) • 1.26 kB
TypeScript
import { IFormattersOptions } from '@devexpress/utils/lib/formatters/options';
export declare class ClientFormattersOptions implements IFormattersOptions {
private get locDate();
private get locNumber();
get twoDigitYearMax(): number;
get ts(): string;
get ds(): string;
get am(): string;
get pm(): string;
get monthNames(): string[];
get genMonthNames(): string[];
get abbrMonthNames(): string[];
get abbrDayNames(): string[];
get dayNames(): string[];
get shortTime(): string;
get longTime(): string;
get shortDate(): string;
get longDate(): string;
get monthDay(): string;
get yearMonth(): string;
get numDecimalPoint(): string;
get numPrec(): number;
get numGroupSeparator(): string;
get numGroups(): number[];
get numNegPattern(): number;
get numPosInf(): string;
get numNegInf(): string;
get numNan(): string;
get currency(): string;
get currDecimalPoint(): string;
get currPrec(): number;
get currGroupSeparator(): string;
get currGroups(): number[];
get currPosPattern(): number;
get currNegPattern(): number;
get percentPattern(): number;
clone(): ClientFormattersOptions;
}