EVA-Notify/src/plain-text/ActIndicator.ts

12 lines
221 B
TypeScript

export interface ActIndicatorText {
loading: string;
}
export const actIndicatorZhCn: ActIndicatorText = {
loading: '加载中...',
};
export const actIndicatorEnUs: ActIndicatorText = {
loading: 'Loading...',
};