paper-ai-release-24-07-21/utils/global.d.ts
2024-01-20 13:43:31 +08:00

16 lines
274 B
TypeScript

import { string } from "slate";
export type JournalInfo = {
name: string;
pages: string;
volume: string;
};
export type Reference = {
title: string;
author: string;
year: number|string;
url: string;
venue?: string;
journal?: JournalInfo;
};