7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
export type versionNotes = {
|
|
title: string;
|
|
date: Date;
|
|
link: string;
|
|
html: string;
|
|
};
|