7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export type Reference = {
|
|
title: string;
|
|
author: string;
|
|
year: number;
|
|
url: string;
|
|
venue?: string;
|
|
}; |