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

24 lines
359 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 = {
2024-02-12 20:55:14 +08:00
title: string;
author: string;
year: number | string;
url: string;
venue?: string;
journal?: JournalInfo;
2024-02-13 19:54:32 +08:00
journalReference?: string;
2024-02-12 20:55:14 +08:00
};
export interface IndexProps {
params: {
lng: string;
};
}