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