@wordpress/wordcount
Version:
WordPress word count utility.
19 lines • 498 B
TypeScript
/**
* Default settings for word counting operations.
*/
export declare const defaultSettings: {
HTMLRegExp: RegExp;
HTMLcommentRegExp: RegExp;
spaceRegExp: RegExp;
HTMLEntityRegExp: RegExp;
connectorRegExp: RegExp;
removeRegExp: RegExp;
astralRegExp: RegExp;
wordsRegExp: RegExp;
characters_excluding_spacesRegExp: RegExp;
characters_including_spacesRegExp: RegExp;
l10n: {
type: "words";
};
};
//# sourceMappingURL=defaultSettings.d.ts.map