@utilix-tech/sdk 0.1.4 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  export { j as json } from './json-BjSoIS1h.cjs';
2
2
  export { e as encoding } from './encoding-7gmq-vkV.cjs';
3
3
  export { h as hashing } from './hashing-CnetQFD_.cjs';
4
- export { t as text } from './text-DqAjPtQ0.cjs';
4
+ export { t as text } from './text-CI7JAl7F.cjs';
5
5
  export { d as data } from './data-rMjWNiOJ.cjs';
6
6
  export { g as generators } from './generators-BGtRGpJZ.cjs';
7
7
  export { t as time } from './time-DbT8fjaF.cjs';
@@ -12,6 +12,8 @@ export { c as code } from './code-BUqyaofO.cjs';
12
12
  export { c as color } from './color-tPwZCr9H.cjs';
13
13
  export { c as css } from './css-Cf7AMGM-.cjs';
14
14
  export { m as misc } from './misc-CA3N198T.cjs';
15
+ export { a as ai_agent } from './ai_agent-CcpkV2DR.cjs';
16
+ export { m as media } from './media-DF2cx3pK.cjs';
15
17
 
16
18
  declare const version = "0.1.0";
17
19
 
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export { j as json } from './json-BjSoIS1h.js';
2
2
  export { e as encoding } from './encoding-7gmq-vkV.js';
3
3
  export { h as hashing } from './hashing-CnetQFD_.js';
4
- export { t as text } from './text-DqAjPtQ0.js';
4
+ export { t as text } from './text-CI7JAl7F.js';
5
5
  export { d as data } from './data-rMjWNiOJ.js';
6
6
  export { g as generators } from './generators-BGtRGpJZ.js';
7
7
  export { t as time } from './time-DbT8fjaF.js';
@@ -12,6 +12,8 @@ export { c as code } from './code-BUqyaofO.js';
12
12
  export { c as color } from './color-tPwZCr9H.js';
13
13
  export { c as css } from './css-Cf7AMGM-.js';
14
14
  export { m as misc } from './misc-CA3N198T.js';
15
+ export { a as ai_agent } from './ai_agent-CcpkV2DR.js';
16
+ export { m as media } from './media-DF2cx3pK.js';
15
17
 
16
18
  declare const version = "0.1.0";
17
19
 
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export { media_exports as media } from './chunk-T3JTY2M5.js';
1
2
  export { units_exports as units } from './chunk-XST6X3HT.js';
2
3
  export { network_exports as network } from './chunk-3BAHSW4C.js';
3
4
  export { api_exports as api } from './chunk-W4UBLYFU.js';
@@ -5,10 +6,11 @@ export { code_exports as code } from './chunk-NSOARQCM.js';
5
6
  export { color_exports as color } from './chunk-BPVAB4P2.js';
6
7
  export { css_exports as css } from './chunk-6YPV2AB5.js';
7
8
  export { misc_exports as misc } from './chunk-OKSWDVOM.js';
9
+ export { ai_agent_exports as ai_agent } from './chunk-M35VJETW.js';
8
10
  export { json_exports as json } from './chunk-TSAGO3XP.js';
9
11
  export { encoding_exports as encoding } from './chunk-ROTPLW7T.js';
10
12
  export { hashing_exports as hashing } from './chunk-FL53T24A.js';
11
- export { text_exports as text } from './chunk-XXYZLLHI.js';
13
+ export { text_exports as text } from './chunk-YBBYFAOV.js';
12
14
  export { data_exports as data } from './chunk-UC656APA.js';
13
15
  export { generators_exports as generators } from './chunk-2CJSLYWI.js';
14
16
  export { time_exports as time } from './chunk-ZPQZEIXP.js';
@@ -0,0 +1,28 @@
1
+ type ImageFormat = 'png' | 'jpeg' | 'gif' | 'webp' | 'bmp';
2
+ interface ImageInfo {
3
+ format: ImageFormat;
4
+ width: number;
5
+ height: number;
6
+ bitDepth?: number;
7
+ colorType?: string;
8
+ hasAlpha?: boolean;
9
+ }
10
+ interface ImageInfoError {
11
+ error: string;
12
+ }
13
+ /**
14
+ * Read image format, dimensions, and basic color info straight from file
15
+ * bytes — no decoding, no image library, no canvas. Supports PNG, JPEG,
16
+ * GIF, WebP, and BMP.
17
+ */
18
+ declare function readImageInfo(bytes: Uint8Array): ImageInfo | ImageInfoError;
19
+
20
+ type media_ImageFormat = ImageFormat;
21
+ type media_ImageInfo = ImageInfo;
22
+ type media_ImageInfoError = ImageInfoError;
23
+ declare const media_readImageInfo: typeof readImageInfo;
24
+ declare namespace media {
25
+ export { type media_ImageFormat as ImageFormat, type media_ImageInfo as ImageInfo, type media_ImageInfoError as ImageInfoError, media_readImageInfo as readImageInfo };
26
+ }
27
+
28
+ export { type ImageFormat as I, type ImageInfo as a, type ImageInfoError as b, media as m, readImageInfo as r };
@@ -0,0 +1,28 @@
1
+ type ImageFormat = 'png' | 'jpeg' | 'gif' | 'webp' | 'bmp';
2
+ interface ImageInfo {
3
+ format: ImageFormat;
4
+ width: number;
5
+ height: number;
6
+ bitDepth?: number;
7
+ colorType?: string;
8
+ hasAlpha?: boolean;
9
+ }
10
+ interface ImageInfoError {
11
+ error: string;
12
+ }
13
+ /**
14
+ * Read image format, dimensions, and basic color info straight from file
15
+ * bytes — no decoding, no image library, no canvas. Supports PNG, JPEG,
16
+ * GIF, WebP, and BMP.
17
+ */
18
+ declare function readImageInfo(bytes: Uint8Array): ImageInfo | ImageInfoError;
19
+
20
+ type media_ImageFormat = ImageFormat;
21
+ type media_ImageInfo = ImageInfo;
22
+ type media_ImageInfoError = ImageInfoError;
23
+ declare const media_readImageInfo: typeof readImageInfo;
24
+ declare namespace media {
25
+ export { type media_ImageFormat as ImageFormat, type media_ImageInfo as ImageInfo, type media_ImageInfoError as ImageInfoError, media_readImageInfo as readImageInfo };
26
+ }
27
+
28
+ export { type ImageFormat as I, type ImageInfo as a, type ImageInfoError as b, media as m, readImageInfo as r };
@@ -234,6 +234,28 @@ declare function getMorseTiming(morse: string): Array<{
234
234
  type: 'dot' | 'dash' | 'gap' | 'wordgap';
235
235
  duration: number;
236
236
  }>;
237
+ interface PassiveVoiceMatch {
238
+ phrase: string;
239
+ hasAgent: boolean;
240
+ }
241
+ interface PassiveVoiceSentence {
242
+ index: number;
243
+ text: string;
244
+ isPassive: boolean;
245
+ matches: PassiveVoiceMatch[];
246
+ }
247
+ interface PassiveVoiceResult {
248
+ sentences: PassiveVoiceSentence[];
249
+ totalSentences: number;
250
+ passiveSentences: number;
251
+ passivePercent: number;
252
+ }
253
+ /**
254
+ * Heuristic passive-voice detector: flags sentences containing a "to be" verb
255
+ * followed (optionally through up to 2 adverbs) by a past participle, e.g.
256
+ * "was written", "is being reviewed", "were quickly approved by the team".
257
+ */
258
+ declare function detectPassiveVoice(text: string): PassiveVoiceResult;
237
259
 
238
260
  type text_AsciiFont = AsciiFont;
239
261
  type text_AsciiOptions = AsciiOptions;
@@ -258,6 +280,9 @@ type text_MarkdownResult = MarkdownResult;
258
280
  type text_MorseOptions = MorseOptions;
259
281
  type text_ParsedDiff = ParsedDiff;
260
282
  type text_ParsedTable = ParsedTable;
283
+ type text_PassiveVoiceMatch = PassiveVoiceMatch;
284
+ type text_PassiveVoiceResult = PassiveVoiceResult;
285
+ type text_PassiveVoiceSentence = PassiveVoiceSentence;
261
286
  type text_ReadabilityScore = ReadabilityScore;
262
287
  type text_SlugSeparator = SlugSeparator;
263
288
  type text_TableOptions = TableOptions;
@@ -274,6 +299,7 @@ declare const text_countWords: typeof countWords;
274
299
  declare const text_csvToHtml: typeof csvToHtml;
275
300
  declare const text_csvToMarkdown: typeof csvToMarkdown;
276
301
  declare const text_detectDelimiter: typeof detectDelimiter;
302
+ declare const text_detectPassiveVoice: typeof detectPassiveVoice;
277
303
  declare const text_diffLines: typeof diffLines;
278
304
  declare const text_diffLinesSimple: typeof diffLinesSimple;
279
305
  declare const text_diffStats: typeof diffStats;
@@ -313,7 +339,7 @@ declare const text_textToMorse: typeof textToMorse;
313
339
  declare const text_unescapeString: typeof unescapeString;
314
340
  declare const text_wordFrequency: typeof wordFrequency;
315
341
  declare namespace text {
316
- export { type text_AsciiFont as AsciiFont, type text_AsciiOptions as AsciiOptions, text_CASE_FORMATS as CASE_FORMATS, type text_CaseFormat as CaseFormat, type text_ConvertOptions as ConvertOptions, text_DEFAULT_CONVERT_OPTIONS as DEFAULT_CONVERT_OPTIONS, type text_DiffFile as DiffFile, type text_DiffHunk as DiffHunk, type text_DiffLine as DiffLine, type text_DiffResult as DiffResult, type text_DiffType as DiffType, type text_DiffViewerLine as DiffViewerLine, text_ESCAPE_MODES as ESCAPE_MODES, type text_EscapeMode as EscapeMode, text_LINE_OPS as LINE_OPS, type text_LineOp as LineOp, type text_LineType as LineType, type text_LoremUnit as LoremUnit, text_MORSE_CODE as MORSE_CODE, type text_MarkdownResult as MarkdownResult, type text_MorseOptions as MorseOptions, type text_ParsedDiff as ParsedDiff, type text_ParsedTable as ParsedTable, type text_ReadabilityScore as ReadabilityScore, type text_SlugSeparator as SlugSeparator, type text_TableOptions as TableOptions, type text_TextAnalysis as TextAnalysis, type text_WordCountResult as WordCountResult, text_addBorder as addBorder, text_analyzeText as analyzeText, text_applyOp as applyOp, text_applyOps as applyOps, text_centerText as centerText, text_convertAll as convertAll, text_convertCase as convertCase, text_countWords as countWords, text_csvToHtml as csvToHtml, text_csvToMarkdown as csvToMarkdown, text_detectDelimiter as detectDelimiter, text_diffLines as diffLines, text_diffLinesSimple as diffLinesSimple, text_diffStats as diffStats, text_escapeAll as escapeAll, text_escapeString as escapeString, text_extractHeadings as extractHeadings, text_formatReadingTime as formatReadingTime, text_generate as generate, text_generateDiff as generateDiff, text_generateHtmlTable as generateHtmlTable, text_generateMarkdownTable as generateMarkdownTable, text_generateParagraphs as generateParagraphs, text_generateSentences as generateSentences, text_generateWords as generateWords, text_getAvailableFonts as getAvailableFonts, text_getMorseForChar as getMorseForChar, text_getMorseTiming as getMorseTiming, text_htmlToMarkdown as htmlToMarkdown, text_isValidMorse as isValidMorse, text_markdownToHtml as markdownToHtml, text_morseToText as morseToText, text_numberToOrdinal as numberToOrdinal, text_numberToRoman as numberToRoman, text_numberToWords as numberToWords, text_ordinalWords as ordinalWords, text_parseDiff as parseDiff, text_parseTableData as parseTableData, text_readabilityScore as readabilityScore, text_renderMarkdown as renderMarkdown, text_romanToNumber as romanToNumber, text_sentenceCount as sentenceCount, text_slugify as slugify, text_slugifyAll as slugifyAll, text_syllableCount as syllableCount, text_textToAscii as textToAscii, text_textToMorse as textToMorse, text_unescapeString as unescapeString, text_wordFrequency as wordFrequency };
342
+ export { type text_AsciiFont as AsciiFont, type text_AsciiOptions as AsciiOptions, text_CASE_FORMATS as CASE_FORMATS, type text_CaseFormat as CaseFormat, type text_ConvertOptions as ConvertOptions, text_DEFAULT_CONVERT_OPTIONS as DEFAULT_CONVERT_OPTIONS, type text_DiffFile as DiffFile, type text_DiffHunk as DiffHunk, type text_DiffLine as DiffLine, type text_DiffResult as DiffResult, type text_DiffType as DiffType, type text_DiffViewerLine as DiffViewerLine, text_ESCAPE_MODES as ESCAPE_MODES, type text_EscapeMode as EscapeMode, text_LINE_OPS as LINE_OPS, type text_LineOp as LineOp, type text_LineType as LineType, type text_LoremUnit as LoremUnit, text_MORSE_CODE as MORSE_CODE, type text_MarkdownResult as MarkdownResult, type text_MorseOptions as MorseOptions, type text_ParsedDiff as ParsedDiff, type text_ParsedTable as ParsedTable, type text_PassiveVoiceMatch as PassiveVoiceMatch, type text_PassiveVoiceResult as PassiveVoiceResult, type text_PassiveVoiceSentence as PassiveVoiceSentence, type text_ReadabilityScore as ReadabilityScore, type text_SlugSeparator as SlugSeparator, type text_TableOptions as TableOptions, type text_TextAnalysis as TextAnalysis, type text_WordCountResult as WordCountResult, text_addBorder as addBorder, text_analyzeText as analyzeText, text_applyOp as applyOp, text_applyOps as applyOps, text_centerText as centerText, text_convertAll as convertAll, text_convertCase as convertCase, text_countWords as countWords, text_csvToHtml as csvToHtml, text_csvToMarkdown as csvToMarkdown, text_detectDelimiter as detectDelimiter, text_detectPassiveVoice as detectPassiveVoice, text_diffLines as diffLines, text_diffLinesSimple as diffLinesSimple, text_diffStats as diffStats, text_escapeAll as escapeAll, text_escapeString as escapeString, text_extractHeadings as extractHeadings, text_formatReadingTime as formatReadingTime, text_generate as generate, text_generateDiff as generateDiff, text_generateHtmlTable as generateHtmlTable, text_generateMarkdownTable as generateMarkdownTable, text_generateParagraphs as generateParagraphs, text_generateSentences as generateSentences, text_generateWords as generateWords, text_getAvailableFonts as getAvailableFonts, text_getMorseForChar as getMorseForChar, text_getMorseTiming as getMorseTiming, text_htmlToMarkdown as htmlToMarkdown, text_isValidMorse as isValidMorse, text_markdownToHtml as markdownToHtml, text_morseToText as morseToText, text_numberToOrdinal as numberToOrdinal, text_numberToRoman as numberToRoman, text_numberToWords as numberToWords, text_ordinalWords as ordinalWords, text_parseDiff as parseDiff, text_parseTableData as parseTableData, text_readabilityScore as readabilityScore, text_renderMarkdown as renderMarkdown, text_romanToNumber as romanToNumber, text_sentenceCount as sentenceCount, text_slugify as slugify, text_slugifyAll as slugifyAll, text_syllableCount as syllableCount, text_textToAscii as textToAscii, text_textToMorse as textToMorse, text_unescapeString as unescapeString, text_wordFrequency as wordFrequency };
317
343
  }
318
344
 
319
- export { generateWords as $, type AsciiFont as A, csvToHtml as B, CASE_FORMATS as C, DEFAULT_CONVERT_OPTIONS as D, ESCAPE_MODES as E, csvToMarkdown as F, detectDelimiter as G, diffLines as H, diffLinesSimple as I, diffStats as J, escapeAll as K, LINE_OPS as L, MORSE_CODE as M, escapeString as N, extractHeadings as O, type ParsedDiff as P, formatReadingTime as Q, type ReadabilityScore as R, type SlugSeparator as S, type TableOptions as T, generate as U, generateDiff as V, type WordCountResult as W, generateHtmlTable as X, generateMarkdownTable as Y, generateParagraphs as Z, generateSentences as _, type AsciiOptions as a, getAvailableFonts as a0, getMorseForChar as a1, getMorseTiming as a2, htmlToMarkdown as a3, isValidMorse as a4, markdownToHtml as a5, morseToText as a6, numberToOrdinal as a7, numberToRoman as a8, numberToWords as a9, ordinalWords as aa, parseDiff as ab, parseTableData as ac, readabilityScore as ad, renderMarkdown as ae, romanToNumber as af, sentenceCount as ag, slugify as ah, slugifyAll as ai, syllableCount as aj, textToAscii as ak, textToMorse as al, unescapeString as am, wordFrequency as an, type CaseFormat as b, type ConvertOptions as c, type DiffFile as d, type DiffHunk as e, type DiffLine as f, type DiffResult as g, type DiffType as h, type DiffViewerLine as i, type EscapeMode as j, type LineOp as k, type LineType as l, type LoremUnit as m, type MarkdownResult as n, type MorseOptions as o, type ParsedTable as p, type TextAnalysis as q, addBorder as r, analyzeText as s, text as t, applyOp as u, applyOps as v, centerText as w, convertAll as x, convertCase as y, countWords as z };
345
+ export { generateHtmlTable as $, type AsciiFont as A, convertAll as B, CASE_FORMATS as C, DEFAULT_CONVERT_OPTIONS as D, ESCAPE_MODES as E, convertCase as F, countWords as G, csvToHtml as H, csvToMarkdown as I, detectDelimiter as J, detectPassiveVoice as K, LINE_OPS as L, MORSE_CODE as M, diffLines as N, diffLinesSimple as O, type ParsedDiff as P, diffStats as Q, type ReadabilityScore as R, type SlugSeparator as S, type TableOptions as T, escapeAll as U, escapeString as V, type WordCountResult as W, extractHeadings as X, formatReadingTime as Y, generate as Z, generateDiff as _, type AsciiOptions as a, generateMarkdownTable as a0, generateParagraphs as a1, generateSentences as a2, generateWords as a3, getAvailableFonts as a4, getMorseForChar as a5, getMorseTiming as a6, htmlToMarkdown as a7, isValidMorse as a8, markdownToHtml as a9, morseToText as aa, numberToOrdinal as ab, numberToRoman as ac, numberToWords as ad, ordinalWords as ae, parseDiff as af, parseTableData as ag, readabilityScore as ah, renderMarkdown as ai, romanToNumber as aj, sentenceCount as ak, slugify as al, slugifyAll as am, syllableCount as an, textToAscii as ao, textToMorse as ap, unescapeString as aq, wordFrequency as ar, type CaseFormat as b, type ConvertOptions as c, type DiffFile as d, type DiffHunk as e, type DiffLine as f, type DiffResult as g, type DiffType as h, type DiffViewerLine as i, type EscapeMode as j, type LineOp as k, type LineType as l, type LoremUnit as m, type MarkdownResult as n, type MorseOptions as o, type ParsedTable as p, type PassiveVoiceMatch as q, type PassiveVoiceResult as r, type PassiveVoiceSentence as s, text as t, type TextAnalysis as u, addBorder as v, analyzeText as w, applyOp as x, applyOps as y, centerText as z };
@@ -234,6 +234,28 @@ declare function getMorseTiming(morse: string): Array<{
234
234
  type: 'dot' | 'dash' | 'gap' | 'wordgap';
235
235
  duration: number;
236
236
  }>;
237
+ interface PassiveVoiceMatch {
238
+ phrase: string;
239
+ hasAgent: boolean;
240
+ }
241
+ interface PassiveVoiceSentence {
242
+ index: number;
243
+ text: string;
244
+ isPassive: boolean;
245
+ matches: PassiveVoiceMatch[];
246
+ }
247
+ interface PassiveVoiceResult {
248
+ sentences: PassiveVoiceSentence[];
249
+ totalSentences: number;
250
+ passiveSentences: number;
251
+ passivePercent: number;
252
+ }
253
+ /**
254
+ * Heuristic passive-voice detector: flags sentences containing a "to be" verb
255
+ * followed (optionally through up to 2 adverbs) by a past participle, e.g.
256
+ * "was written", "is being reviewed", "were quickly approved by the team".
257
+ */
258
+ declare function detectPassiveVoice(text: string): PassiveVoiceResult;
237
259
 
238
260
  type text_AsciiFont = AsciiFont;
239
261
  type text_AsciiOptions = AsciiOptions;
@@ -258,6 +280,9 @@ type text_MarkdownResult = MarkdownResult;
258
280
  type text_MorseOptions = MorseOptions;
259
281
  type text_ParsedDiff = ParsedDiff;
260
282
  type text_ParsedTable = ParsedTable;
283
+ type text_PassiveVoiceMatch = PassiveVoiceMatch;
284
+ type text_PassiveVoiceResult = PassiveVoiceResult;
285
+ type text_PassiveVoiceSentence = PassiveVoiceSentence;
261
286
  type text_ReadabilityScore = ReadabilityScore;
262
287
  type text_SlugSeparator = SlugSeparator;
263
288
  type text_TableOptions = TableOptions;
@@ -274,6 +299,7 @@ declare const text_countWords: typeof countWords;
274
299
  declare const text_csvToHtml: typeof csvToHtml;
275
300
  declare const text_csvToMarkdown: typeof csvToMarkdown;
276
301
  declare const text_detectDelimiter: typeof detectDelimiter;
302
+ declare const text_detectPassiveVoice: typeof detectPassiveVoice;
277
303
  declare const text_diffLines: typeof diffLines;
278
304
  declare const text_diffLinesSimple: typeof diffLinesSimple;
279
305
  declare const text_diffStats: typeof diffStats;
@@ -313,7 +339,7 @@ declare const text_textToMorse: typeof textToMorse;
313
339
  declare const text_unescapeString: typeof unescapeString;
314
340
  declare const text_wordFrequency: typeof wordFrequency;
315
341
  declare namespace text {
316
- export { type text_AsciiFont as AsciiFont, type text_AsciiOptions as AsciiOptions, text_CASE_FORMATS as CASE_FORMATS, type text_CaseFormat as CaseFormat, type text_ConvertOptions as ConvertOptions, text_DEFAULT_CONVERT_OPTIONS as DEFAULT_CONVERT_OPTIONS, type text_DiffFile as DiffFile, type text_DiffHunk as DiffHunk, type text_DiffLine as DiffLine, type text_DiffResult as DiffResult, type text_DiffType as DiffType, type text_DiffViewerLine as DiffViewerLine, text_ESCAPE_MODES as ESCAPE_MODES, type text_EscapeMode as EscapeMode, text_LINE_OPS as LINE_OPS, type text_LineOp as LineOp, type text_LineType as LineType, type text_LoremUnit as LoremUnit, text_MORSE_CODE as MORSE_CODE, type text_MarkdownResult as MarkdownResult, type text_MorseOptions as MorseOptions, type text_ParsedDiff as ParsedDiff, type text_ParsedTable as ParsedTable, type text_ReadabilityScore as ReadabilityScore, type text_SlugSeparator as SlugSeparator, type text_TableOptions as TableOptions, type text_TextAnalysis as TextAnalysis, type text_WordCountResult as WordCountResult, text_addBorder as addBorder, text_analyzeText as analyzeText, text_applyOp as applyOp, text_applyOps as applyOps, text_centerText as centerText, text_convertAll as convertAll, text_convertCase as convertCase, text_countWords as countWords, text_csvToHtml as csvToHtml, text_csvToMarkdown as csvToMarkdown, text_detectDelimiter as detectDelimiter, text_diffLines as diffLines, text_diffLinesSimple as diffLinesSimple, text_diffStats as diffStats, text_escapeAll as escapeAll, text_escapeString as escapeString, text_extractHeadings as extractHeadings, text_formatReadingTime as formatReadingTime, text_generate as generate, text_generateDiff as generateDiff, text_generateHtmlTable as generateHtmlTable, text_generateMarkdownTable as generateMarkdownTable, text_generateParagraphs as generateParagraphs, text_generateSentences as generateSentences, text_generateWords as generateWords, text_getAvailableFonts as getAvailableFonts, text_getMorseForChar as getMorseForChar, text_getMorseTiming as getMorseTiming, text_htmlToMarkdown as htmlToMarkdown, text_isValidMorse as isValidMorse, text_markdownToHtml as markdownToHtml, text_morseToText as morseToText, text_numberToOrdinal as numberToOrdinal, text_numberToRoman as numberToRoman, text_numberToWords as numberToWords, text_ordinalWords as ordinalWords, text_parseDiff as parseDiff, text_parseTableData as parseTableData, text_readabilityScore as readabilityScore, text_renderMarkdown as renderMarkdown, text_romanToNumber as romanToNumber, text_sentenceCount as sentenceCount, text_slugify as slugify, text_slugifyAll as slugifyAll, text_syllableCount as syllableCount, text_textToAscii as textToAscii, text_textToMorse as textToMorse, text_unescapeString as unescapeString, text_wordFrequency as wordFrequency };
342
+ export { type text_AsciiFont as AsciiFont, type text_AsciiOptions as AsciiOptions, text_CASE_FORMATS as CASE_FORMATS, type text_CaseFormat as CaseFormat, type text_ConvertOptions as ConvertOptions, text_DEFAULT_CONVERT_OPTIONS as DEFAULT_CONVERT_OPTIONS, type text_DiffFile as DiffFile, type text_DiffHunk as DiffHunk, type text_DiffLine as DiffLine, type text_DiffResult as DiffResult, type text_DiffType as DiffType, type text_DiffViewerLine as DiffViewerLine, text_ESCAPE_MODES as ESCAPE_MODES, type text_EscapeMode as EscapeMode, text_LINE_OPS as LINE_OPS, type text_LineOp as LineOp, type text_LineType as LineType, type text_LoremUnit as LoremUnit, text_MORSE_CODE as MORSE_CODE, type text_MarkdownResult as MarkdownResult, type text_MorseOptions as MorseOptions, type text_ParsedDiff as ParsedDiff, type text_ParsedTable as ParsedTable, type text_PassiveVoiceMatch as PassiveVoiceMatch, type text_PassiveVoiceResult as PassiveVoiceResult, type text_PassiveVoiceSentence as PassiveVoiceSentence, type text_ReadabilityScore as ReadabilityScore, type text_SlugSeparator as SlugSeparator, type text_TableOptions as TableOptions, type text_TextAnalysis as TextAnalysis, type text_WordCountResult as WordCountResult, text_addBorder as addBorder, text_analyzeText as analyzeText, text_applyOp as applyOp, text_applyOps as applyOps, text_centerText as centerText, text_convertAll as convertAll, text_convertCase as convertCase, text_countWords as countWords, text_csvToHtml as csvToHtml, text_csvToMarkdown as csvToMarkdown, text_detectDelimiter as detectDelimiter, text_detectPassiveVoice as detectPassiveVoice, text_diffLines as diffLines, text_diffLinesSimple as diffLinesSimple, text_diffStats as diffStats, text_escapeAll as escapeAll, text_escapeString as escapeString, text_extractHeadings as extractHeadings, text_formatReadingTime as formatReadingTime, text_generate as generate, text_generateDiff as generateDiff, text_generateHtmlTable as generateHtmlTable, text_generateMarkdownTable as generateMarkdownTable, text_generateParagraphs as generateParagraphs, text_generateSentences as generateSentences, text_generateWords as generateWords, text_getAvailableFonts as getAvailableFonts, text_getMorseForChar as getMorseForChar, text_getMorseTiming as getMorseTiming, text_htmlToMarkdown as htmlToMarkdown, text_isValidMorse as isValidMorse, text_markdownToHtml as markdownToHtml, text_morseToText as morseToText, text_numberToOrdinal as numberToOrdinal, text_numberToRoman as numberToRoman, text_numberToWords as numberToWords, text_ordinalWords as ordinalWords, text_parseDiff as parseDiff, text_parseTableData as parseTableData, text_readabilityScore as readabilityScore, text_renderMarkdown as renderMarkdown, text_romanToNumber as romanToNumber, text_sentenceCount as sentenceCount, text_slugify as slugify, text_slugifyAll as slugifyAll, text_syllableCount as syllableCount, text_textToAscii as textToAscii, text_textToMorse as textToMorse, text_unescapeString as unescapeString, text_wordFrequency as wordFrequency };
317
343
  }
318
344
 
319
- export { generateWords as $, type AsciiFont as A, csvToHtml as B, CASE_FORMATS as C, DEFAULT_CONVERT_OPTIONS as D, ESCAPE_MODES as E, csvToMarkdown as F, detectDelimiter as G, diffLines as H, diffLinesSimple as I, diffStats as J, escapeAll as K, LINE_OPS as L, MORSE_CODE as M, escapeString as N, extractHeadings as O, type ParsedDiff as P, formatReadingTime as Q, type ReadabilityScore as R, type SlugSeparator as S, type TableOptions as T, generate as U, generateDiff as V, type WordCountResult as W, generateHtmlTable as X, generateMarkdownTable as Y, generateParagraphs as Z, generateSentences as _, type AsciiOptions as a, getAvailableFonts as a0, getMorseForChar as a1, getMorseTiming as a2, htmlToMarkdown as a3, isValidMorse as a4, markdownToHtml as a5, morseToText as a6, numberToOrdinal as a7, numberToRoman as a8, numberToWords as a9, ordinalWords as aa, parseDiff as ab, parseTableData as ac, readabilityScore as ad, renderMarkdown as ae, romanToNumber as af, sentenceCount as ag, slugify as ah, slugifyAll as ai, syllableCount as aj, textToAscii as ak, textToMorse as al, unescapeString as am, wordFrequency as an, type CaseFormat as b, type ConvertOptions as c, type DiffFile as d, type DiffHunk as e, type DiffLine as f, type DiffResult as g, type DiffType as h, type DiffViewerLine as i, type EscapeMode as j, type LineOp as k, type LineType as l, type LoremUnit as m, type MarkdownResult as n, type MorseOptions as o, type ParsedTable as p, type TextAnalysis as q, addBorder as r, analyzeText as s, text as t, applyOp as u, applyOps as v, centerText as w, convertAll as x, convertCase as y, countWords as z };
345
+ export { generateHtmlTable as $, type AsciiFont as A, convertAll as B, CASE_FORMATS as C, DEFAULT_CONVERT_OPTIONS as D, ESCAPE_MODES as E, convertCase as F, countWords as G, csvToHtml as H, csvToMarkdown as I, detectDelimiter as J, detectPassiveVoice as K, LINE_OPS as L, MORSE_CODE as M, diffLines as N, diffLinesSimple as O, type ParsedDiff as P, diffStats as Q, type ReadabilityScore as R, type SlugSeparator as S, type TableOptions as T, escapeAll as U, escapeString as V, type WordCountResult as W, extractHeadings as X, formatReadingTime as Y, generate as Z, generateDiff as _, type AsciiOptions as a, generateMarkdownTable as a0, generateParagraphs as a1, generateSentences as a2, generateWords as a3, getAvailableFonts as a4, getMorseForChar as a5, getMorseTiming as a6, htmlToMarkdown as a7, isValidMorse as a8, markdownToHtml as a9, morseToText as aa, numberToOrdinal as ab, numberToRoman as ac, numberToWords as ad, ordinalWords as ae, parseDiff as af, parseTableData as ag, readabilityScore as ah, renderMarkdown as ai, romanToNumber as aj, sentenceCount as ak, slugify as al, slugifyAll as am, syllableCount as an, textToAscii as ao, textToMorse as ap, unescapeString as aq, wordFrequency as ar, type CaseFormat as b, type ConvertOptions as c, type DiffFile as d, type DiffHunk as e, type DiffLine as f, type DiffResult as g, type DiffType as h, type DiffViewerLine as i, type EscapeMode as j, type LineOp as k, type LineType as l, type LoremUnit as m, type MarkdownResult as n, type MorseOptions as o, type ParsedTable as p, type PassiveVoiceMatch as q, type PassiveVoiceResult as r, type PassiveVoiceSentence as s, text as t, type TextAnalysis as u, addBorder as v, analyzeText as w, applyOp as x, applyOps as y, centerText as z };