7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import type { DataType } from '@/types/data';
|
|
|
|
export const DataTypeTextMap: Record<DataType, string> = {
|
|
QA: '问答拆分',
|
|
abstract: '摘要总结'
|
|
};
|