chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -23,11 +23,11 @@ import { MonetizeDescription } from '../monetize-description';
import { MonetizeCreditRefreshCycle } from '../monetize-credit-refresh-cycle';
export interface MonetizeConfigValue {
/** 是否开启付费 */
/** Whether to start payment */
isOn: boolean;
/** 开启付费后,用户免费体验的次数 */
/** The number of free user experiences after starting payment */
freeCount: number;
/** 刷新周期 */
/** refresh cycle */
refreshCycle: BotMonetizationRefreshPeriod;
}
@@ -36,8 +36,8 @@ interface MonetizeConfigPanelProps {
value: MonetizeConfigValue;
onChange: (value: MonetizeConfigValue) => void;
/**
* 内置防抖后的 onChange 事件,业务侧可选择性使用,正常只传 onChange 即可
* (由于该组件是完全受控组件,因此不能只传 onDebouncedChange必须传 onChange 实时更新视图)
* The onChange event after built-in anti-shake can be selectively used by the business side. Normally, only onChange can be transmitted.
* (Since this component is a fully controlled component, you cannot just pass onDebouncedChange, you must pass onChange to update the view in real time)
*/
onDebouncedChange?: (value: MonetizeConfigValue) => void;
}