paper-ai-release-24-07-21/utils/global.d.ts

16 lines
274 B
TypeScript
Raw Normal View History

2024-01-20 13:43:31 +08:00
import { string } from "slate";
2024-01-19 15:36:41 +08:00
export type JournalInfo = {
name: string;
pages: string;
volume: string;
};
2024-01-18 15:46:18 +08:00
export type Reference = {
title: string;
author: string;
2024-01-20 13:43:31 +08:00
year: number|string;
2024-01-18 15:46:18 +08:00
url: string;
venue?: string;
2024-01-19 15:36:41 +08:00
journal?: JournalInfo;
2024-01-18 15:46:18 +08:00
};