builder-settings-types 0.0.402 → 0.0.404
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.
|
@@ -2,7 +2,13 @@ type LanguageMeta = {
|
|
|
2
2
|
label: string;
|
|
3
3
|
placeholder?: string;
|
|
4
4
|
};
|
|
5
|
+
/**
|
|
6
|
+
* Language metadata
|
|
7
|
+
*/
|
|
5
8
|
export declare const LANGUAGE_METADATA: Record<string, LanguageMeta>;
|
|
9
|
+
/**
|
|
10
|
+
* Public helpers
|
|
11
|
+
*/
|
|
6
12
|
export declare function getLanguageLabel(code: string): string;
|
|
7
13
|
export declare function getLanguagePlaceholder(code: string, template?: string): string;
|
|
8
14
|
export {};
|
package/package.json
CHANGED