File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
libs/astro-loader-i18n/src Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " astro-loader-i18n " : patch
3+ ---
4+
5+ Fix resolvePath typing
Original file line number Diff line number Diff line change @@ -4,4 +4,9 @@ export { localized } from "./schemas/i18n-content-schema";
44export { extendI18nLoaderSchema , i18nLoaderSchema } from "./schemas/i18n-loader-schema" ;
55export { i18nPropsAndParams , i18nProps } from "./props-and-params/i18n-props-and-params" ;
66export { createI18nCollection } from "./collections/create-i18n-collection" ;
7- export { resolvePath } from "astro-utils-i18n" ;
7+
8+ import { resolvePath as _resolvePath } from "astro-utils-i18n" ;
9+
10+ type resolvePathType = ( ...paths : Array < string | number | undefined > ) => string ;
11+
12+ export const resolvePath : resolvePathType = _resolvePath ;
You can’t perform that action at this time.
0 commit comments