paper-ai-release-24-07-21/utils/global.d.ts
2024-02-13 19:54:32 +08:00

24 lines
359 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;
journalReference?: string;
};
export interface IndexProps {
params: {
lng: string;
};
}