@storyteller-platform/transliteration 3.0.1 → 3.0.3
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/bin/slugify +1 -1
- package/dist/bin/transliterate +1 -1
- package/dist/browser/bundle.esm.min.js +1 -1
- package/dist/browser/bundle.esm.min.js.map +1 -1
- package/dist/browser/bundle.umd.min.js +2 -2
- package/dist/browser/bundle.umd.min.js.map +1 -1
- package/dist/browser/latin.esm.min.js +1 -1
- package/dist/browser/latin.esm.min.js.map +1 -1
- package/dist/browser/latin.umd.min.js +2 -2
- package/dist/browser/latin.umd.min.js.map +1 -1
- package/dist/{chunk-GJBOWCXS.js → chunk-5XH4ARKO.js} +4 -4
- package/dist/chunk-5XH4ARKO.js.map +1 -0
- package/dist/{index-BVy__XED.d.ts → index-DZj2ef5v.d.ts} +1 -1
- package/dist/node/src/node/index.d.ts +2 -1
- package/dist/node/src/node/index.js +2 -2
- package/dist/node/src/node/index.js.map +1 -1
- package/dist/node/src/node/latin.d.ts +2 -1
- package/dist/node/src/node/latin.js +3 -3
- package/dist/node/src/node/latin.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-GJBOWCXS.js.map +0 -1
|
@@ -133,4 +133,4 @@ type TransliterationFunction<T> = {
|
|
|
133
133
|
type TransliterateFunction = TransliterationFunction<OptionsTransliterate>;
|
|
134
134
|
type SlugifyFunction = TransliterationFunction<OptionsSlugify>;
|
|
135
135
|
|
|
136
|
-
export type
|
|
136
|
+
export { Mapping as M, type SlugifyFunction as S, type TransliterateFunction as T };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { T as TransliterateFunction, S as SlugifyFunction } from '../../../index-
|
|
1
|
+
import { T as TransliterateFunction, S as SlugifyFunction } from '../../../index-DZj2ef5v.js';
|
|
2
|
+
export { M as Mapping } from '../../../index-DZj2ef5v.js';
|
|
2
3
|
|
|
3
4
|
declare const transliterate: TransliterateFunction;
|
|
4
5
|
declare const slugify: SlugifyFunction;
|