@verbaly/compiler 0.15.0 → 0.16.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 +6 -0
- package/dist/cli.js.map +1 -1
- package/dist/index.js +23 -8
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -154,6 +154,12 @@ ${lines.join("\n")}
|
|
|
154
154
|
|
|
155
155
|
export const verbaly: import('verbaly').Verbaly<VerbalyKey>;
|
|
156
156
|
|
|
157
|
+
export const sourceLocale: string;
|
|
158
|
+
export const locales: string[];
|
|
159
|
+
export function createInstance(
|
|
160
|
+
options?: import('verbaly').VerbalyOptions<VerbalyKey>,
|
|
161
|
+
): import('verbaly').Verbaly<VerbalyKey>;
|
|
162
|
+
|
|
157
163
|
export function t<K extends VerbalyKey>(
|
|
158
164
|
key: K,
|
|
159
165
|
...args: [VerbalyMessages[K]] extends [never] ? [] : [VerbalyMessages[K]]
|