mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
17 lines
278 B
TypeScript
17 lines
278 B
TypeScript
import v0170 from "./v0170.md";
|
|
|
|
export type Module = typeof v0170;
|
|
|
|
interface IReleaseNotes {
|
|
// handle should be in the form of YYYYMMDD
|
|
date: number;
|
|
content: Module;
|
|
}
|
|
|
|
export const releaseNotes: IReleaseNotes[] = [
|
|
{
|
|
date: 20220906,
|
|
content: v0170,
|
|
},
|
|
];
|