@verbaly/compiler 0.18.0 → 0.19.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/cli.js +1 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +6 -2
- package/dist/index.js +18 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -156,6 +156,7 @@ ${lines.join("\n")}
|
|
|
156
156
|
|
|
157
157
|
export const sourceLocale: string;
|
|
158
158
|
export const locales: string[];
|
|
159
|
+
export function loadMessages(locale: string): Promise<Record<string, string>>;
|
|
159
160
|
export function createInstance(
|
|
160
161
|
options?: import('verbaly').VerbalyOptions<VerbalyKey>,
|
|
161
162
|
): import('verbaly').Verbaly<VerbalyKey>;
|