mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
//#region src/core/i18n/text/volume.d.ts
|
|
declare const mutedValueText: {
|
|
readonly key: "volume.mutedValue";
|
|
readonly text: '{percent}, muted';
|
|
};
|
|
declare const mutedText: {
|
|
readonly key: "volume.muted";
|
|
readonly text: 'Muted';
|
|
};
|
|
declare const labelText: {
|
|
readonly key: "volume.label";
|
|
readonly text: 'Volume';
|
|
};
|
|
declare const valueText: {
|
|
readonly key: "volume.value";
|
|
readonly text: 'Volume {value}';
|
|
};
|
|
//#endregion
|
|
export { labelText, mutedText, mutedValueText, valueText };
|
|
//# sourceMappingURL=volume.d.ts.map
|