Files
FastGPT/client/src/constants/kb.ts
2023-06-09 13:21:03 +08:00

12 lines
217 B
TypeScript

import type { KbItemType } from '@/types/plugin';
export const defaultKbDetail: KbItemType = {
_id: '',
userId: '',
updateTime: new Date(),
avatar: '/icon/logo.png',
name: '',
tags: '',
totalData: 0
};