Last active: a year ago
export const publicType = {
image: '图片',
audio: '音频',
video: '视频',
file: '文件',
model: '模型',
vh5: '虚拟主播',
h5: 'H5',
flat: '分片图',
} as const;
export type PublicTypeKey = keyof typeof publicType;
export type PublicTypes = (typeof publicType)[PublicTypeKey];
// (alias) type PublicTypes = "图片" | "音频" | "视频" | "文件" | "模型" | "虚拟主播" | "H5" | "分片图"